This commit is contained in:
Ella Stanforth 2021-12-31 12:34:29 +00:00
parent c007731926
commit bb4bedb615
1 changed files with 36 additions and 0 deletions

36
gnome/atk/build.sh Normal file
View File

@ -0,0 +1,36 @@
pkgname=atk
_pkgver=2.36
pkgver=$_pkgver.0
fetch() {
curl -L "https://download.gnome.org/sources/atk/$_pkgver/atk-$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 \
-Dintrospection=false \
-Ddocs=false
samu
}
package() {
cd $pkgname-$pkgver
cd build
DESTDIR=$pkgdir samu install
}
backup() {
return
}
license() {
cd $pkgname-$pkgver
cat COPYING
}