summaryrefslogtreecommitdiff
path: root/repo/system/libmbim.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/libmbim.xibuild')
-rw-r--r--repo/system/libmbim.xibuild22
1 files changed, 22 insertions, 0 deletions
diff --git a/repo/system/libmbim.xibuild b/repo/system/libmbim.xibuild
new file mode 100644
index 0000000..8fe1d88
--- /dev/null
+++ b/repo/system/libmbim.xibuild
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+MAKEDEPS="make "
+DEPS="musl"
+
+PKG_VER=1.26.2
+SOURCE=https://www.freedesktop.org/software/libmbim/libmbim-$PKG_VER.tar.xz
+DESC="MBIM modem protocol helper library"
+
+build () {
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --disable-static \
+ --enable-introspection=yes
+ make
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+}