2021-01-23 12:58:05 +01:00
|
|
|
# Description: Interface for atk
|
|
|
|
# URL: http://developer.gnome.org/libatspi/
|
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
|
|
# Depends on: dbus gobject-introspection intltool xorg-libxtst meson ninja
|
2012-12-15 00:45:00 +01:00
|
|
|
|
|
|
|
name=at-spi2-core
|
2021-03-20 15:54:16 +11:00
|
|
|
version=2.40.0
|
2019-04-09 22:48:31 +02:00
|
|
|
release=1
|
|
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/at-spi2-core/${version:0:4}/at-spi2-core-$version.tar.xz)
|
2012-12-15 00:45:00 +01:00
|
|
|
|
|
|
|
build() {
|
2021-01-23 12:58:05 +01:00
|
|
|
meson setup build $name-$version \
|
|
|
|
--prefix /usr \
|
|
|
|
--sysconfdir=/usr/etc \
|
|
|
|
--libexecdir=/usr/lib/at-spi2 \
|
|
|
|
--buildtype=plain
|
2012-12-15 00:45:00 +01:00
|
|
|
|
2021-01-23 12:58:05 +01:00
|
|
|
meson compile -C build -j ${JOBS:-1}
|
|
|
|
DESTDIR=$PKG meson install -C build
|
2018-03-13 20:05:44 +01:00
|
|
|
|
2021-01-23 12:58:05 +01:00
|
|
|
rm -r $PKG/usr/{share/locale,lib/systemd}
|
2012-12-15 00:45:00 +01:00
|
|
|
}
|