first commit
This commit is contained in:
3
src/libwnck3/.gitignore
vendored
Normal file
3
src/libwnck3/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/libwnck3/changes.md
Normal file
2
src/libwnck3/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 43.0
|
||||
First version
|
19
src/libwnck3/pkg.sh
Normal file
19
src/libwnck3/pkg.sh
Normal file
@ -0,0 +1,19 @@
|
||||
NAME="libwnck3"
|
||||
DESC="Window Navigator Construction Kit"
|
||||
VERSION="43.0"
|
||||
FILES=("https://download.gnome.org/sources/libwnck/${VERSION%.*}/libwnck-$VERSION.tar.xz")
|
||||
HASHES=("cd21ef743a1e9286554401c5b28d5ec6")
|
||||
DEPENDS=("gtk3" "gobject-introspection" "startup-notification")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf libwnck-$VERSION.tar.xz
|
||||
cd libwnck-$VERSION
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
|
||||
meson setup --prefix=/usr --buildtype=release ..
|
||||
ninja && DESTDIR="$ROOTDIR" ninja install
|
||||
|
||||
cd ../.. && rm -r libwnck-$VERSION
|
||||
}
|
Reference in New Issue
Block a user