2021-05-02 13:21:50 +10:00
|
|
|
# Description: Protocol definitions and daemon for D-Bus at-spi
|
2021-07-10 12:30:26 +02:00
|
|
|
# URL: https://gitlab.gnome.org/GNOME/at-spi2-core
|
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
2022-09-18 08:19:26 +02:00
|
|
|
# Depends on: dbus gobject-introspection intltool libxml2 xorg-libxtst
|
2012-12-15 00:45:00 +01:00
|
|
|
|
|
|
|
name=at-spi2-core
|
2022-09-18 08:19:26 +02:00
|
|
|
version=2.46.0
|
2019-04-09 22:48:31 +02:00
|
|
|
release=1
|
2021-05-02 13:21:50 +10:00
|
|
|
source=(https://download.gnome.org/sources/$name/${version:0:4}/$name-$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 \
|
2021-09-19 12:46:12 +02:00
|
|
|
--buildtype=plain \
|
|
|
|
--wrap-mode nodownload \
|
|
|
|
-D b_lto=true \
|
|
|
|
-D b_pie=true
|
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
|
|
|
}
|