diff --git a/.SRCINFO b/.SRCINFO index 8604098..70364f7 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,26 +1,26 @@ # Generated by mksrcinfo v8 -# Wed May 4 15:09:24 UTC 2016 +# Sun May 15 23:56:04 UTC 2016 pkgbase = aurutils pkgdesc = helper tools for the arch user repository - pkgver = 0.8.5 - pkgrel = 2 + pkgver = 0.9.1 + pkgrel = 1 url = https://github.com/AladW/aurutils arch = any license = ISC checkdepends = shellcheck makedepends = git - depends = pacman>=5.0 + depends = pacman>=5 + depends = expac>=7 + depends = aria2>=1.23 depends = git depends = jshon - depends = expac - depends = aria2 depends = repose depends = pacutils depends = datamash optdepends = devtools: build in an nspawn container optdepends = vifm: improved build file interaction - source = https://github.com/AladW/aurutils/archive/0.8.5.tar.gz - md5sums = 65eca72eeefe1ee2db1c56ff844273ea + source = https://github.com/AladW/aurutils/archive/0.9.1.tar.gz + sha256sums = 9bde7b37c18c12159d048c722e0df602e79faa2fdc75a069bc0be7eadf898201 pkgname = aurutils diff --git a/PKGBUILD b/PKGBUILD index 0a9e5fc..4e1c0b1 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,13 +1,13 @@ pkgname=aurutils -pkgver=0.8.5 -pkgrel=2 +pkgver=0.9.1 +pkgrel=1 pkgdesc='helper tools for the arch user repository' arch=('any') url=https://github.com/AladW/aurutils license=('ISC') source=("$url/archive/$pkgver.tar.gz") -md5sums=('65eca72eeefe1ee2db1c56ff844273ea') -depends=('pacman>=5.0' 'git' 'jshon' 'expac' 'aria2' +sha256sums=('9bde7b37c18c12159d048c722e0df602e79faa2fdc75a069bc0be7eadf898201') +depends=('pacman>=5' 'expac>=7' 'aria2>=1.23' 'git' 'jshon' 'repose' 'pacutils' 'datamash') checkdepends=('shellcheck') makedepends=('git') @@ -16,16 +16,10 @@ optdepends=('devtools: build in an nspawn container' check() { cd "$pkgname-$pkgver" - LANG=C shellcheck -e 2016 -x bin/* + make check } package() { cd "$pkgname-$pkgver" - install -d "$pkgdir"/usr/{bin,share{/zsh/site-functions,/man/man1,{/licenses,/doc}/aurutils}} - - install -m755 bin/* "$pkgdir"/usr/bin/ - install -m644 completions/* "$pkgdir"/usr/share/zsh/site-functions/ - install -m644 doc/* "$pkgdir"/usr/share/man/man1/ - install -m644 LICENSE "$pkgdir"/usr/share/licenses/aurutils/ - install -m644 CREDITS README "$pkgdir"/usr/share/doc/aurutils/ + make DESTDIR="$pkgdir" PREFIX="/usr" install }