first commit
This commit is contained in:
3
src/network-manager-applet/.gitignore
vendored
Normal file
3
src/network-manager-applet/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/network-manager-applet/changes.md
Normal file
2
src/network-manager-applet/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.32.0
|
||||
First version
|
28
src/network-manager-applet/pkg.sh
Normal file
28
src/network-manager-applet/pkg.sh
Normal file
@ -0,0 +1,28 @@
|
||||
NAME="network-manager-applet"
|
||||
DESC="Tool and a panel applet used to configure wired and wireless network connections through GUI"
|
||||
VERSION="1.32.0"
|
||||
FILES=("https://download.gnome.org/sources/network-manager-applet/1.32/network-manager-applet-$VERSION.tar.xz")
|
||||
HASHES=("ba0de3589b2975a181a21a74bcb62447")
|
||||
DEPENDS=("gtk3" "libnma" "libsecret" "gobject-introspection" "modemmanager" "glib")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
|
||||
meson setup .. \
|
||||
--prefix=/usr \
|
||||
--buildtype=release \
|
||||
-Dappindicator=no \
|
||||
-Dselinux=false
|
||||
ninja && DESTDIR="$ROOTDIR" ninja install
|
||||
|
||||
cd ../.. && rm -r $NAME-$VERSION
|
||||
}
|
||||
|
||||
INSTALL(){
|
||||
glib-compile-schemas /usr/share/glib-2.0/schemas
|
||||
exit 0
|
||||
}
|
Reference in New Issue
Block a user