opt/at-spi2-core/Pkgfile

26 lines
705 B
Plaintext
Raw Normal View History

2021-05-02 05:21:50 +02: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
name=at-spi2-core
2023-09-03 10:50:21 +02:00
version=2.48.4
2019-04-09 22:48:31 +02:00
release=1
2021-05-02 05:21:50 +02:00
source=(https://download.gnome.org/sources/$name/${version:0:4}/$name-$version.tar.xz)
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
2021-01-23 12:58:05 +01:00
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
2021-01-23 12:58:05 +01:00
rm -r $PKG/usr/{share/locale,lib/systemd}
}