first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/libqmi/.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/libqmi/changes.md Normal file
View File

@@ -0,0 +1,2 @@
# 1.30.8
First version

16
src/libqmi/pkg.sh Normal file
View File

@@ -0,0 +1,16 @@
NAME="libqmi"
DESC="GLib-based library for talking to WWAN modems and devices which speak the Qualcomm MSM Interface (QMI) protocol"
VERSION="1.30.8"
FILES=("https://www.freedesktop.org/software/libqmi/libqmi-$VERSION.tar.xz")
HASHES=("5ec8838914f80e1dfa4d2fa8cc2f186d")
DEPENDS=("glib" "libgudev" "libmbim" "gobject-introspection")
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
PYTHON=python3 ./configure --prefix=/usr --disable-static
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r $NAME-$VERSION
}