opt/at-spi2-core/Pkgfile

23 lines
646 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
# Depends on: dbus gobject-introspection intltool xorg-libxtst meson ninja
name=at-spi2-core
2021-07-10 12:30:26 +02:00
version=2.40.3
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 \
--buildtype=plain
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}
}