diff options
| author | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
|---|---|---|
| committer | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
| commit | c82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch) | |
| tree | 56d864b5a5c6c145edd96178ae219a8f90e191a6 /libs/at-spi2-core/MAKEPKG | |
| download | ports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz | |
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'libs/at-spi2-core/MAKEPKG')
| -rw-r--r-- | libs/at-spi2-core/MAKEPKG | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/libs/at-spi2-core/MAKEPKG b/libs/at-spi2-core/MAKEPKG new file mode 100644 index 0000000..9c87661 --- /dev/null +++ b/libs/at-spi2-core/MAKEPKG @@ -0,0 +1,44 @@ +#!/bin/mkpkg +# description: Assistive Technology Service Provider Interface +# url: https://wiki.gnome.org/Accessibility + +name=at-spi2-core +version=2.61.90 +release=1 +_short=2.61 +depends=(glib dbus) +makedeps=(meson) +source=(https://download.gnome.org/sources/$name/$_short/$name-$version.tar.xz) + +sha256sums=( + "f099d620d2a48997fcd3b8a4a044b60156e59c116857acbc676208556ef540c3" +) + +build() { + meson setup $name-$version build \ + --prefix=/usr \ + --libdir=lib \ + --buildtype=plain \ + -D docs=false \ + -D introspection=disabled \ + -D x11=disabled \ + -D use_systemd=false \ + -D gtk2_atk_adaptor=false + + meson compile -C build + DESTDIR=$PKG meson install -C build + + _pyver=$(/usr/bin/python3 -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")') + _sitedir="$PKG/usr/lib/python${_pyver}/site-packages" + if [ -d "$_sitedir" ]; then + /usr/bin/python3 -OO -m compileall -b -q "$_sitedir" + find "$_sitedir" -type d -name __pycache__ -exec rm -rf {} + 2>/dev/null || true + fi +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh |
