2006-02-23 17:34:42 +00:00
|
|
|
# Description: A set of interfaces for accessibility
|
2021-01-23 12:58:18 +01:00
|
|
|
# URL: https://www.gtk.org/
|
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
|
|
# Depends on: gobject-introspection meson ninja
|
2006-02-23 17:34:42 +00:00
|
|
|
|
|
|
|
name=atk
|
2020-06-25 12:00:52 +02:00
|
|
|
version=2.36.0
|
2014-06-22 16:39:27 +02:00
|
|
|
release=1
|
2015-03-24 19:55:09 +01:00
|
|
|
source=(http://download.gnome.org/sources/$name/${version:0:4}/$name-$version.tar.xz)
|
2006-02-23 17:34:42 +00:00
|
|
|
|
2017-03-22 14:26:06 +11:00
|
|
|
build() {
|
2021-01-23 12:58:18 +01:00
|
|
|
meson setup build $name-$version \
|
|
|
|
--prefix=/usr \
|
|
|
|
--buildtype=plain
|
2019-03-19 05:59:04 +01:00
|
|
|
|
2021-01-23 12:58:18 +01:00
|
|
|
meson compile -C build -j ${JOBS:-1}
|
|
|
|
DESTDIR=$PKG meson install -C build
|
2019-03-19 05:59:04 +01:00
|
|
|
|
|
|
|
rm -r $PKG/usr/share/locale
|
2006-02-23 17:34:42 +00:00
|
|
|
}
|