mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
17 lines
455 B
Plaintext
17 lines
455 B
Plaintext
# description : Simple XML parser made for easy integration
|
|
# homepage : http://www.grinninglizard.com/tinyxml2
|
|
# depends : cmake ninja setconf
|
|
|
|
name=tinyxml2
|
|
version=9.0.0
|
|
release=1
|
|
source="https://github.com/leethomason/$name/archive/$version/$name-$version.tar.gz"
|
|
|
|
build() {
|
|
cmake -B build -S $name-$version -G Ninja \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-Dtinyxml2_SHARED_LIBS=ON
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
}
|