From 0d43adafed4ce0fa22988f2ff8948f8f64d811a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Tue, 15 Nov 2022 17:09:41 +0100 Subject: ArchLinux: Add powerpc64le to architectures. Cleanup some unnecessary dependencies. Add pkgbuilds for dependencies that are not available on archlinuxpower.org. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- arch/tde-deps/libxml++2.6/PKGBUILD | 55 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 arch/tde-deps/libxml++2.6/PKGBUILD (limited to 'arch/tde-deps/libxml++2.6') diff --git a/arch/tde-deps/libxml++2.6/PKGBUILD b/arch/tde-deps/libxml++2.6/PKGBUILD new file mode 100644 index 000000000..56686585b --- /dev/null +++ b/arch/tde-deps/libxml++2.6/PKGBUILD @@ -0,0 +1,55 @@ +# Maintainer: Jan Alexander Steffens (heftig) +# Contributor: damir + +pkgbase=libxml++2.6 +pkgname=(libxml++2.6 libxml++2.6-docs) +pkgver=2.42.1 +pkgrel=1 +pkgdesc="C++ bindings to libxml2" +url="https://libxmlplusplus.github.io/libxmlplusplus/" +arch=('powerpc64le') +license=(LGPL) +depends=(libxml2 glibmm) +makedepends=(git meson mm-common glibmm-docs) +options=(!emptydirs) +_commit=ceedcb1ca7462305cbca16464bbc5ea50d89c356 # tags/2.42.1^0 +source=("git+https://github.com/libxmlplusplus/libxmlplusplus#commit=$_commit") +sha256sums=('SKIP') + +pkgver() { + cd libxmlplusplus + git describe --tags | sed 's/-/+/g' +} + +prepare() { + cd libxmlplusplus +} + +build() { + arch-meson libxmlplusplus build -D maintainer-mode=true + meson compile -C build +} + +check() { + meson test -C build --print-errorlogs +} + +package_libxml++2.6() { + provides=("libxml++2=$pkgver" libxml++-2.6.so) + conflicts=(libxml++2) + replaces=(libxml++2) + + meson install -C build --destdir "$pkgdir" + + # Split -docs + mkdir -p docs/usr/share + mv -t docs/usr/share "$pkgdir"/usr/share/{devhelp,doc} +} + +package_libxml++2.6-docs() { + pkgdesc+=" (documentation)" + depends=() + options=(!strip) + + mv -t "$pkgdir" docs/* +} -- cgit v1.2.1