diff options
author | Juergen Daubert <jue@jue.li> | 2021-01-23 12:58:05 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2021-01-23 13:00:53 +0100 |
commit | 0eac06a16d9be0208cee7c395fc4696fc4b9d566 (patch) | |
tree | c9f9953e0a625f4c356edf7276ee8f0991e09ba6 /at-spi2-core | |
parent | 4900eca6d56195acf49409c7ac509565ae5ebc46 (diff) | |
download | opt-0eac06a16d9be0208cee7c395fc4696fc4b9d566.tar.gz opt-0eac06a16d9be0208cee7c395fc4696fc4b9d566.tar.xz |
at-spi2-core: new maintainer
Diffstat (limited to 'at-spi2-core')
-rw-r--r-- | at-spi2-core/.signature | 4 | ||||
-rw-r--r-- | at-spi2-core/Pkgfile | 22 |
2 files changed, 14 insertions, 12 deletions
diff --git a/at-spi2-core/.signature b/at-spi2-core/.signature index 33563e7f1..cb72b83e2 100644 --- a/at-spi2-core/.signature +++ b/at-spi2-core/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/X6qY+SLqCtRnMPvUyNwqWpvgA9MT0huJxW3Y26OubCwU019RWHCw1L2HVMDzqAxjS47MJlgt4gEzO0lClLvoQQ= -SHA256 (Pkgfile) = 59a815bb72a7efce6c5c44098a0f8db01751b3211e12659d9e76ad1c5c7f0cd2 +RWSE3ohX2g5d/U6jQK5tyiQJeqBtEtkduidm3aU8oMstB6lELkelNA7wI6KTbMk4ME4G1KYenAKtoTiGXQ1mM9Qp58+upLmLqAQ= +SHA256 (Pkgfile) = 79a67820bf1e62aa397ed7e07d9bcb0713de778c8618c423da78839316c1696f SHA256 (.footprint) = 88f656ba8ec4d0f91cab148c6e9ff24c0821c64d65d4b8163e47779601d25e84 SHA256 (at-spi2-core-2.38.0.tar.xz) = 84e36c3fe66862133f5fe229772b76aa2526e10de5014a3778f2fa46ce550da5 diff --git a/at-spi2-core/Pkgfile b/at-spi2-core/Pkgfile index 069587fdb..7fcd57d81 100644 --- a/at-spi2-core/Pkgfile +++ b/at-spi2-core/Pkgfile @@ -1,7 +1,7 @@ -# Description: Interface for atk -# URL: http://developer.gnome.org/libatspi/ -# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu -# Depends on: dbus gobject-introspection intltool xorg-libxtst meson ninja +# 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 name=at-spi2-core version=2.38.0 @@ -9,12 +9,14 @@ release=1 source=(http://ftp.gnome.org/pub/gnome/sources/at-spi2-core/${version:0:4}/at-spi2-core-$version.tar.xz) build() { - cd $name-$version + meson setup build $name-$version \ + --prefix /usr \ + --sysconfdir=/usr/etc \ + --libexecdir=/usr/lib/at-spi2 \ + --buildtype=plain - meson build --prefix /usr --sysconfdir=/usr/etc --libexecdir=/usr/lib/at-spi2 + meson compile -C build -j ${JOBS:-1} + DESTDIR=$PKG meson install -C build - DESTDIR=$PKG ninja -C build install - - rm -r $PKG/usr/share/locale - rm -r $PKG/usr/lib/systemd/ + rm -r $PKG/usr/{share/locale,lib/systemd} } |