diff options
Diffstat (limited to 'templates/cmake.xibuild')
-rw-r--r-- | templates/cmake.xibuild | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/cmake.xibuild b/templates/cmake.xibuild new file mode 100644 index 0000000..1591035 --- /dev/null +++ b/templates/cmake.xibuild @@ -0,0 +1,12 @@ +build () { + cmake -B build -G Ninja \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=/usr/lib \ + -DBUILD_SHARED_LIBS=True \ + -DBUILD_STATIC_LIBS=OFF + cmake --build build +} + +package () { + DESTDIR="$PKG_DEST" cmake --install build +} |