77647c4c26
upstream release
31 lines
817 B
Bash
31 lines
817 B
Bash
# Maintainer: Alad Wenter <https://github.com/AladW>
|
|
pkgname=aurutils
|
|
pkgver=4.1
|
|
pkgrel=1
|
|
pkgdesc='helper tools for the arch user repository'
|
|
url='https://github.com/AladW/aurutils'
|
|
arch=('any')
|
|
license=('custom:ISC')
|
|
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz")
|
|
changelog=aurutils.changelog
|
|
install=aurutils.install
|
|
sha256sums=('32593e29ff0dbe5dbaeba88d95424b2d399335af789899f4042d609ab4d86415')
|
|
depends=('git' 'jq' 'pacutils' 'curl' 'expect')
|
|
optdepends=('bash-completion: bash completion'
|
|
'zsh: zsh completion'
|
|
'devtools: aur-chroot'
|
|
'vifm: default pager')
|
|
|
|
prepare() {
|
|
cd "$pkgname-$pkgver"
|
|
}
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgver"
|
|
make AURUTILS_VERSION="$pkgver"
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|