summaryrefslogtreecommitdiff
path: root/repo/extra-cmake-modules
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-06-15 20:02:02 +0100
committerdavidovski <david@davidovski.xyz>2022-06-15 20:02:02 +0100
commitd2567bfbdf0e9fa6db0a6ed1534831ec859a3e03 (patch)
tree684a17eebf446aa1adab1097616f1882c8d51568 /repo/extra-cmake-modules
parentd1fc3393cca72e8e432f827f7624e38734fad6dc (diff)
added deps for qemu
Diffstat (limited to 'repo/extra-cmake-modules')
-rw-r--r--repo/extra-cmake-modules/extra-cmake-modules.xibuild22
1 files changed, 22 insertions, 0 deletions
diff --git a/repo/extra-cmake-modules/extra-cmake-modules.xibuild b/repo/extra-cmake-modules/extra-cmake-modules.xibuild
new file mode 100644
index 0000000..1c58956
--- /dev/null
+++ b/repo/extra-cmake-modules/extra-cmake-modules.xibuild
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+NAME="extra-cmake-modules"
+DESC="Extra CMake modules"
+
+MAKEDEPS="python-sphinx ninja python-docutils python-pygments python-babel python-pytz python-jinja python-packaging python-imagesize "
+
+PKG_VER=5.93.0
+SOURCE="https://download.kde.org/stable/frameworks/${PKG_VER%.*}/extra-cmake-modules-$PKG_VER.tar.xz"
+
+build() {
+ cmake -B build -G Ninja \
+ -DCMAKE_BUILD_TYPE=RelWithDebInfo \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DSphinx_BUILD_EXECUTABLE=/usr/bin/sphinx-build
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$PKG_DEST" cmake --build build --target install
+}
+