bump 0.4.1

New dependency: datamash
This commit is contained in:
Alad Wenter 2016-04-08 20:54:19 +02:00
parent 0ae96087b9
commit 03bd48e42d
2 changed files with 11 additions and 10 deletions

View file

@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
# Mon Apr 4 22:06:54 UTC 2016
# Fri Apr 8 18:54:12 UTC 2016
pkgbase = aurutils
pkgdesc = helper tools for the arch user repository
pkgver = 0.4.0
pkgver = 0.4.1
pkgrel = 1
url = https://github.com/AladW/aurutils
arch = any
@ -16,10 +16,11 @@ pkgbase = aurutils
depends = pacutils
depends = expac
depends = aria2
depends = datamash
optdepends = devtools: aurbuild -c
optdepends = vifm: improved build file interaction
source = https://github.com/AladW/aurutils/archive/0.4.0.tar.gz
md5sums = 3b3b659c128ffbc29ac2db9391b06be0
source = https://github.com/AladW/aurutils/archive/0.4.1.tar.gz
md5sums = 876bef85febe154cb7be6ed7d8ac8927
pkgname = aurutils

View file

@ -1,13 +1,13 @@
pkgname=aurutils
pkgver=0.4.0
pkgver=0.4.1
pkgrel=1
pkgdesc='helper tools for the arch user repository'
arch=('any')
url=https://github.com/AladW/aurutils
license=('ISC')
source=("https://github.com/AladW/aurutils/archive/$pkgver.tar.gz")
md5sums=('3b3b659c128ffbc29ac2db9391b06be0')
depends=('pacman>=5.0' 'git' 'repose' 'jshon' 'pacutils' 'expac' 'aria2')
md5sums=('876bef85febe154cb7be6ed7d8ac8927')
depends=('pacman>=5.0' 'git' 'repose' 'jshon' 'pacutils' 'expac' 'aria2' 'datamash')
checkdepends=('shellcheck')
makedepends=('git')
optdepends=('devtools: aurbuild -c'
@ -15,15 +15,15 @@ optdepends=('devtools: aurbuild -c'
check() {
cd "$pkgname-$pkgver"
shellcheck -e 2016,2174 -x ./aur* repofind
shellcheck -e 2016,2174 -x bin/*
}
package() {
cd "$pkgname-$pkgver"
install -d "$pkgdir"/usr/{bin,share{/licenses,/doc}/aurutils}
install -m755 ./aur* repofind "$pkgdir"/usr/bin/
install -m755 bin/* "$pkgdir"/usr/bin/
install -m644 LICENSE "$pkgdir"/usr/share/licenses/aurutils/
install -m644 CREDITS doc/* "$pkgdir"/usr/share/doc/aurutils/
install -m644 README.org CREDITS doc/* "$pkgdir"/usr/share/doc/aurutils/
}