first commit
This commit is contained in:
3
src/libnma/.gitignore
vendored
Normal file
3
src/libnma/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/libnma/changes.md
Normal file
2
src/libnma/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.10.6
|
||||
First version
|
24
src/libnma/pkg.sh
Normal file
24
src/libnma/pkg.sh
Normal file
@ -0,0 +1,24 @@
|
||||
NAME="libnma"
|
||||
DESC="Implementation of the NetworkManager GUI functions"
|
||||
VERSION="1.10.6"
|
||||
FILES=("https://download.gnome.org/sources/libnma/1.10/libnma-$VERSION.tar.xz")
|
||||
HASHES=("71c7ce674fea1fae8f1368a7fcb6ff43")
|
||||
DEPENDS=("gcr3" "gtk3" "gtk4" "networkmanager" "iso-codes")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
|
||||
meson setup .. \
|
||||
--prefix=/usr \
|
||||
--buildtype=release \
|
||||
-Dgtk_doc=false \
|
||||
-Dlibnma_gtk4=true \
|
||||
-Dmobile_broadband_provider_info=false
|
||||
ninja && DESTDIR="$ROOTDIR" ninja install
|
||||
|
||||
cd ../.. && rm -r $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user