Date: Sunday, March 1, 2015 @ 12:57:45 Author: andyrtr Revision: 232351
upgpkg: ding-libs 0.4.0-3 fix license, add gpg key, run test suite Modified: ding-libs/trunk/PKGBUILD ----------+ PKGBUILD | 35 ++++++++++++++++++++--------------- 1 file changed, 20 insertions(+), 15 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2015-03-01 11:54:06 UTC (rev 232350) +++ PKGBUILD 2015-03-01 11:57:45 UTC (rev 232351) @@ -1,30 +1,35 @@ # $Id$ -# Maintainer: Massimiliano Torromeo <[email protected]> -# Maintainer: Mantas M. <[email protected]> +# Maintainer: AndyRTR <[email protected]> +# Contributor: Massimiliano Torromeo <[email protected]> +# Contributor: Mantas M. <[email protected]> pkgname=ding-libs pkgver=0.4.0 -pkgrel=2 +pkgrel=3 pkgdesc="'D is not GLib' utility libraries" arch=('i686' 'x86_64') -url="https://git.fedorahosted.org/git/ding-libs.git" -license=('GPL3') +url="https://fedorahosted.org/sssd/" +license=('GPL3' 'LGPL3') depends=('glibc') makedepends=('doxygen') -source=("https://fedorahosted.org/released/$pkgname/$pkgname-$pkgver.tar.gz" - "https://fedorahosted.org/released/$pkgname/$pkgname-$pkgver.tar.gz.asc") -sha256sums=('bdeb90b07ceaa9145e6784ce40a71b69a37fffc7373c51fee258ffffd5390457' - 'SKIP') +checkdepends=('check') +source=(https://fedorahosted.org/released/$pkgname/$pkgname-$pkgver.tar.gz{,.asc}) +sha1sums=('38d9ebb0e44dfb7a8d97c2f650a586260c8909f9' + 'SKIP') +validpgpkeys=('7B54CAE8A03D66F3D70A5B516F5A90EB44FBC7C7') # "Pavel Reichl <[email protected]>" build() { - cd "$srcdir/$pkgname-$pkgver" - ./configure --prefix=/usr - make + cd $pkgname-$pkgver + ./configure --prefix=/usr --disable-static + make all docs } +check() { + cd $pkgname-$pkgver + make check +} + package() { - cd "$srcdir/$pkgname-$pkgver" + cd $pkgname-$pkgver make DESTDIR="$pkgdir/" install } - -# vim: ts=2:sw=2:et
