PKGBUILDs/xorgproto/static-compat/PKGBUILD

52 lines
1.8 KiB
Bash

# Contributor: AndyRTR <andyrtr@archlinux.org>
# When releasing a xorgproto version with updated keysyms, rebuild libx11
_pkgname=xorgproto
pkgname=static-compat-$_pkgname
pkgver=2022.2
pkgrel=1
pkgdesc="combined X.Org X11 Protocol headers"
arch=('any')
url="https://xorg.freedesktop.org/"
license=('custom')
makedepends=('xorg-util-macros' 'static-compat-meson')
checkdepends=('python-libevdev')
source=(https://xorg.freedesktop.org/archive/individual/proto/$_pkgname-$pkgver.tar.xz{,.sig})
sha512sums=('8e6108110600d076a94cc6d0e465b2e9adfbbe8d7e6b75fae9c5262d99dc6074ab1ed561a74d6d451f00f5b7af9f507a6317be9c0770efeed9e60b64beb7a1c9'
'SKIP')
validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # "Peter Hutterer (Who-T) <office@who-t.net>"
#validpgpkeys=('FD0004A26EADFE43A4C3F249C6F7AE200374452D') # "Povilas Kanapickas <povilas@radix.lt>"
prepare() {
mkdir build
}
build() {
source static-compat-environment
static-compat-meson "$_pkgname"-$pkgver build
ninja -C build
}
check() {
source static-compat-environment
meson test -C build
}
package() {
source static-compat-environment
DESTDIR="$pkgdir" ninja -C build install
# licenses
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
install -m644 "$_pkgname"-$pkgver/COPYING* "${pkgdir}/usr/share/licenses/${pkgname}/"
# remove licences of legacy stuff we don't ship anymore
rm -f "${pkgdir}"/usr/share/licenses/${pkgname}/COPYING-{evieproto,fontcacheproto,lg3dproto,printproto,xcalibrateproto,xf86rushproto}
# cleanup
rm -f "${pkgdir}/$static_compat_prefix"/usr/include/X11/extensions/apple*
rm -f "${pkgdir}"/usr/share/licenses/${_pkgname}/COPYING-{apple,windows}wmproto
rm -f "${pkgdir}/$static_compat_prefix"/share/pkgconfig/applewmproto.pc
rm -rf "${pkgdir}/$static_compat_prefix"/share/doc
}