[arch-commits] Commit in libcomps/repos (community-x86_64 community-x86_64/PKGBUILD)
Jelle van der Waa
jelle at gemini.archlinux.org
Thu Dec 16 10:24:03 UTC 2021
Date: Thursday, December 16, 2021 @ 10:24:03
Author: jelle
Revision: 1074215
archrelease: copy trunk to community-x86_64
Added:
libcomps/repos/community-x86_64/
libcomps/repos/community-x86_64/PKGBUILD
(from rev 1074214, libcomps/trunk/PKGBUILD)
----------+
PKGBUILD | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
Copied: libcomps/repos/community-x86_64/PKGBUILD (from rev 1074214, libcomps/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2021-12-16 10:24:03 UTC (rev 1074215)
@@ -0,0 +1,52 @@
+# Contributor: larchunix
+# Maintainer: Jelle van der Waa <jelle at archlinux.org>
+
+pkgname=libcomps
+pkgver=0.1.18
+pkgrel=1
+pkgdesc="Comps XML file manipulation library"
+arch=('x86_64')
+url="https://github.com/rpm-software-management/$pkgname"
+license=('GPL2')
+depends=('expat' 'libxml2' 'zlib')
+makedepends=('cmake' 'python' 'python-setuptools' 'doxygen' 'python-sphinx')
+checkdepends=('check')
+optdepends=('python: for python bindings')
+source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
+sha256sums=('02f8aa83dfd19beb7ce250b39818017a6eda7c3984caf8efbd2fc0c70d97bc9a')
+
+build() {
+ cd "$pkgname-$pkgver"
+
+ cmake -B build -S libcomps \
+ -DCMAKE_BUILD_TYPE=None \
+ -DCMAKE_C_FLAGS_RELEASE='-DNDEBUG' \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -Wno-dev
+
+ make -C build
+
+ make -C build docs
+ make -C build pydocs
+}
+
+check() {
+ cd "$pkgname-$pkgver"
+
+ make -C build test
+ make -C build pytest
+}
+
+package() {
+ cd "$pkgname-$pkgver"
+
+ make -C build DESTDIR="$pkgdir/" install
+
+ mkdir -p "$pkgdir/usr/share/doc/$pkgname"/{doxygen,sphinx}
+ cp -Rp build/docs/libcomps-doc/html/ "$pkgdir/usr/share/doc/$pkgname/doxygen/"
+ rm -r build/src/python/docs/html/.doctrees
+ cp -Rp build/src/python/docs/html/ "$pkgdir/usr/share/doc/$pkgname/sphinx/"
+
+ install -Dp -m644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
+}
More information about the arch-commits
mailing list