add atk
This commit is contained in:
parent
c007731926
commit
bb4bedb615
1 changed files with 36 additions and 0 deletions
36
gnome/atk/build.sh
Normal file
36
gnome/atk/build.sh
Normal 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
|
||||||
|
}
|
Loading…
Reference in a new issue