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/modemmanager/.gitignore vendored Normal file
View File

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

View File

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

22
src/modemmanager/pkg.sh Normal file
View File

@ -0,0 +1,22 @@
NAME="modemmanager"
DESC="Unified high level API for communicating with mobile broadband modems, regardless of the protocol used to communicate with the actual device"
VERSION="1.18.12"
FILES=("https://www.freedesktop.org/software/ModemManager/ModemManager-$VERSION.tar.xz")
HASHES=("9f014dfc59f1bd8bc230bb2c2974d104")
DEPENDS=("libgudev" "gobject-introspection" "libmbim" "libqmi")
PACKAGE() {
tar xf ModemManager-$VERSION.tar.xz
cd ModemManager-$VERSION
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static \
--disable-maintainer-mode \
--with-systemd-journal \
--with-systemd-suspend-resume
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r ModemManager-$VERSION
}