blob: d07a0a38631f2a3a8abc9139c89e1d8a106a6c26 (
plain)
1 # Description: A set of interfaces for accessibility
2 # URL: http://www.gtk.org/
3 # Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
4 # Depends on: gobject-introspection meson ninja
5
6 name=atk
7 version=2.34.1
8 release=1
9 source=(http://download.gnome.org/sources/$name/${version:0:4}/$name-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13
14 meson build --prefix=/usr
15 DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install
16
17 rm -r $PKG/usr/share/locale
18 }
|