add gnome group

This commit is contained in:
Ella Stanforth 2021-12-26 13:50:44 +00:00
parent 513d7d5ceb
commit 8a3779d207
3 changed files with 69 additions and 0 deletions

BIN
gnome/glib/.2.68.4.tar.zst Normal file

Binary file not shown.

38
gnome/glib/build.sh Normal file
View File

@ -0,0 +1,38 @@
pkgname=glib
_pkgver=2.68
pkgver=$_pkgver.4
fetch() {
curl -L "https://download.gnome.org/sources/glib/$_pkgver/glib-$pkgver.tar.xz" -o $pkgname-$pkgver.tar.xz
tar -xf $pkgname-$pkgver.tar.xz
mkdir $pkgname-$pkgver/build
}
build() {
cd $pkgname-$pkgver
cd build
meson .. \
--buildtype=release \
--prefix=/usr \
--libexecdir=lib \
-Dtests=false \
-Dnls=disabled
samu
}
package() {
cd $pkgname-$pkgver
cd build
DESTDIR=$pkgdir samu install
rm -rf $pkgdir/usr/share/bash-completion
rm -rf $pkgdir/usr/share/gdb
rm -rf $pkgdir/usr/bin/gdbus*
}
license() {
cd $pkgname-$pkgver
cat LICENSE
# cat COPYING
}

31
gnome/pango/build.sh Normal file
View File

@ -0,0 +1,31 @@
pkgname=pango
_pkgver=1.49
pkgver=$_pkgver.1
fetch() {
curl -L "https://download.gnome.org/sources/pango/$_pkgver/pango-$pkgver.tar.xz" -o $pkgname-$pkgver.tar.xz
tar -xf $pkgname-$pkgver.tar.xz
mkdir $pkgname-$pkgver/build
}
build() {
cd $pkgname-$pkgver
cd build
meson .. \
--buildtype=release \
--prefix=/usr \
--libexecdir=lib
samu
}
package() {
cd $pkgname-$pkgver
cd build
DESTDIR=$pkgdir samu install
}
license() {
cd $pkgname-$pkgver
cat LICENSE
# cat COPYING
}