git » libmbim.git » commit ae09467

libmbim 1.32.0

author Urja (ARMLFS builder)
2025-12-23 14:42:46 UTC
committer Urja (ARMLFS builder)
2025-12-23 14:42:46 UTC
parent c68315d0318a4b45c29fd03104480f517bb7166f

libmbim 1.32.0

.SRCINFO +1 -5
.gitignore +2 -0
PKGBUILD +9 -9

diff --git a/.SRCINFO b/.SRCINFO
index 3b6ce87..4f0332c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -4,11 +4,11 @@ pkgbase = libmbim
 	pkgrel = 1
 	url = https://www.freedesktop.org/wiki/Software/libmbim/
 	arch = x86_64
+	arch = armv7h
 	license = GPL-2.0-or-later
 	makedepends = bash-completion
 	makedepends = git
 	makedepends = gobject-introspection
-	makedepends = gtk-doc
 	makedepends = help2man
 	makedepends = meson
 	depends = bash
@@ -22,7 +22,3 @@ pkgbase = libmbim
 
 pkgname = libmbim
 	provides = libmbim-glib.so
-
-pkgname = libmbim-docs
-	pkgdesc = MBIM modem protocol helper library (documentation)
-	depends = 
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a43258a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/src/
+/pkg/
diff --git a/PKGBUILD b/PKGBUILD
index 5112684..eb801ac 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,13 +3,13 @@
 pkgbase=libmbim
 pkgname=(
   libmbim
-  libmbim-docs
+#  libmbim-docs
 )
 pkgver=1.32.0
 pkgrel=1
 pkgdesc="MBIM modem protocol helper library"
 url="https://www.freedesktop.org/wiki/Software/libmbim/"
-arch=(x86_64)
+arch=(x86_64 'armv7h')
 license=(GPL-2.0-or-later)
 depends=(
   bash
@@ -21,7 +21,7 @@ makedepends=(
   bash-completion
   git
   gobject-introspection
-  gtk-doc
+#  gtk-doc
   help2man
   meson
 )
@@ -38,24 +38,24 @@ prepare() {
 
 build() {
   local meson_options=(
-    -D gtk_doc=true
+    -D gtk_doc=false
   )
 
   arch-meson libmbim build "${meson_options[@]}"
   meson compile -C build
 }
 
-check() {
-  meson test -C build --print-errorlogs
-}
+#check() {
+#  meson test -C build --print-errorlogs
+#}
 
 package_libmbim() {
   provides=(libmbim-glib.so)
 
   meson install -C build --destdir "$pkgdir"
 
-  mkdir -p doc/usr/share
-  mv {"$pkgdir",doc}/usr/share/gtk-doc
+#  mkdir -p doc/usr/share
+#  mv {"$pkgdir",doc}/usr/share/gtk-doc
 }
 
 package_libmbim-docs() {