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

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
}