summaryrefslogtreecommitdiff
path: root/templates/cmake.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-04-17 22:07:52 +0100
committerdavidovski <david@davidovski.xyz>2022-04-17 22:07:52 +0100
commitc35d083dc525e223b085ec00e6863ea6eafb003c (patch)
tree5bbe25b4f92cd1821c8cbbefed9c19de6e42b98e /templates/cmake.xibuild
parent7cc715c1249422ddf91987be64a35eef43e3e62d (diff)
updated musl
Diffstat (limited to 'templates/cmake.xibuild')
-rw-r--r--templates/cmake.xibuild12
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
+}