summaryrefslogtreecommitdiff
path: root/repo/cmake-extra
diff options
context:
space:
mode:
Diffstat (limited to 'repo/cmake-extra')
-rw-r--r--repo/cmake-extra/cmake-extra.xibuild20
1 files changed, 20 insertions, 0 deletions
diff --git a/repo/cmake-extra/cmake-extra.xibuild b/repo/cmake-extra/cmake-extra.xibuild
new file mode 100644
index 0000000..a81994f
--- /dev/null
+++ b/repo/cmake-extra/cmake-extra.xibuild
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+MAKEDEPS="cmake"
+DEPS="cmake"
+
+PKG_VER=1.6
+SOURCE=https://gitlab.com/ubports/core/cmake-extras/-/archive/$PKG_VER/cmake-extras-$PKG_VER.tar.gz
+DESC="A collection of add-ons for the CMake build tool"
+
+build () {
+ cmake -B build \
+ -DCMAKE_BUILD_TYPE=None \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ cmake --build build
+
+}
+
+package () {
+ DESTDIR="$PKG_DEST" cmake --build build --target install
+}