diff options
author | Britney Fransen <brfransen@gmail.com> | 2018-04-14 15:04:38 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2018-04-14 15:04:38 (GMT) |
commit | 20318531c85fa10c8ddca273ad7e818bccf7ebd7 (patch) | |
tree | e81545ad119d2d9f8711360fd23b40f04f9f2b26 /abs/core | |
parent | 11d740908401b59854ab41a831264ca83968568c (diff) | |
download | linhes_pkgbuild-20318531c85fa10c8ddca273ad7e818bccf7ebd7.zip linhes_pkgbuild-20318531c85fa10c8ddca273ad7e818bccf7ebd7.tar.gz linhes_pkgbuild-20318531c85fa10c8ddca273ad7e818bccf7ebd7.tar.bz2 |
ding-libs: update to 0.6.1
Diffstat (limited to 'abs/core')
-rw-r--r-- | abs/core/ding-libs/PKGBUILD | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/abs/core/ding-libs/PKGBUILD b/abs/core/ding-libs/PKGBUILD new file mode 100644 index 0000000..be98822 --- /dev/null +++ b/abs/core/ding-libs/PKGBUILD @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: AndyRTR <andyrtr@archlinux.org> +# Contributor: Massimiliano Torromeo <massimiliano.torromeo@gmail.com> +# Contributor: Mantas M. <grawity@gmail.com> + +pkgname=ding-libs +pkgver=0.6.1 +pkgrel=1 +pkgdesc="'D is not GLib' utility libraries" +arch=('x86_64') +url="https://pagure.io/SSSD/ding-libs/" +license=('GPL3' 'LGPL3') +depends=('glibc') +makedepends=('doxygen') +checkdepends=('check') +source=(https://releases.pagure.org/SSSD//$pkgname/$pkgname-$pkgver.tar.gz{,.asc}) +sha1sums=('dab4c855b065bd728021437af81ae726c31c5272' + 'SKIP') +validpgpkeys=('7B54CAE8A03D66F3D70A5B516F5A90EB44FBC7C7' # "Pavel Reichl <preichl@redhat.com>" + 'E4E366758CA0716AAB8048671EC6AB7532E7BC25' # "Jakub Hrozek <jhrozek@redhat.com>" + '16F24229488E736048952737BA88000FE6398272') # "Michal Židek (rh_work) <mzidek@redhat.com>" + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --disable-static + make all docs +} + +check() { + cd $pkgname-$pkgver + make check +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir/" install +} |