Add aurutils

This commit is contained in:
Travis Burtrum 2017-01-10 15:17:17 -05:00
parent 69faf30b80
commit a1903c59ae
2 changed files with 55 additions and 0 deletions

27
src/aurutils/.SRCINFO Normal file
View File

@ -0,0 +1,27 @@
# Generated by mksrcinfo v8
# Wed Dec 28 03:50:47 UTC 2016
pkgbase = aurutils
pkgdesc = helper tools for the arch user repository
pkgver = 1.4.2
pkgrel = 1
url = https://github.com/AladW/aurutils
arch = any
license = ISC
checkdepends = shellcheck
makedepends = git
depends = pacman>=5
depends = expac>=7
depends = git
depends = jq
depends = repose
depends = pacutils>=0.4
optdepends = devtools: systemd-nspawn support
optdepends = vifm: build file interaction
optdepends = aria2>=1.23: alternative downloader
optdepends = parallel: alternative downloader
optdepends = datamash: check tsort input
source = aurutils-1.4.2::git+https://github.com/AladW/aurutils#commit=1b00b899eadbb816fe2e3f93b9497676049595e8
sha256sums = SKIP
pkgname = aurutils

28
src/aurutils/PKGBUILD Normal file
View File

@ -0,0 +1,28 @@
pkgname=aurutils
pkgver=1.4.2
_commit=1b00b899eadbb816fe2e3f93b9497676049595e8
pkgrel=1
pkgdesc='helper tools for the arch user repository'
arch=('any')
url=https://github.com/AladW/aurutils
license=('ISC')
depends=('pacman>=5' 'expac>=7' 'git' 'jq' 'repose' 'pacutils>=0.4')
checkdepends=('shellcheck')
makedepends=('git')
optdepends=('devtools: systemd-nspawn support'
'vifm: build file interaction'
'aria2>=1.23: alternative downloader'
'parallel: alternative downloader'
'datamash: check tsort input')
source=("$pkgname-$pkgver::git+$url#commit=$_commit")
sha256sums=('SKIP')
check() {
cd "$pkgname-$pkgver"
make check
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" PREFIX="/usr" install
}