[arch-commits] Commit in libxml++2.6/repos (2 files)

Jan Steffens heftig at gemini.archlinux.org
Fri Sep 9 22:50:38 UTC 2022


    Date: Friday, September 9, 2022 @ 22:50:38
  Author: heftig
Revision: 1297909

archrelease: copy trunk to community-x86_64

Added:
  libxml++2.6/repos/community-x86_64/
  libxml++2.6/repos/community-x86_64/PKGBUILD
    (from rev 1297907, libxml++2.6/trunk/PKGBUILD)

----------+
 PKGBUILD |   55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 55 insertions(+)

Copied: libxml++2.6/repos/community-x86_64/PKGBUILD (from rev 1297907, libxml++2.6/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2022-09-09 22:50:38 UTC (rev 1297909)
@@ -0,0 +1,55 @@
+# Maintainer: Jan Alexander Steffens (heftig) <heftig at archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+
+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=(x86_64)
+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/*
+}



More information about the arch-commits mailing list