Gabriel Ebner
fa6e7fafac
subrepo: subdir: "aurutils" merged: "a03e794" upstream: origin: "https://aur.archlinux.org/aurutils" branch: "master" commit: "a03e794" git-subrepo: version: "0.4.1" origin: "???" commit: "???"
37 lines
1.0 KiB
Bash
37 lines
1.0 KiB
Bash
# Maintainer: Alad Wenter <https://github.com/AladW>
|
|
pkgname=aurutils
|
|
pkgver=3.1.2
|
|
pkgrel=1
|
|
pkgdesc='helper tools for the arch user repository'
|
|
url='https://github.com/AladW/aurutils'
|
|
arch=('any')
|
|
license=('custom:ISC')
|
|
source=("$url/releases/download/$pkgver/$pkgname-$pkgver.tar.gz"
|
|
"$url/releases/download/$pkgver/$pkgname-$pkgver.tar.gz.signify"
|
|
'aurutils.pub')
|
|
changelog=aurutils.changelog
|
|
sha256sums=('86a80ae8327aeeb4932c7709767b2be5fae19281a5bcc78b2b10197e97c32afb'
|
|
'SKIP'
|
|
'a2c32b0dba4da40b83ff31cce48a00faed5ed2f663c060a865d31caeb1e4ed39')
|
|
depends=('git' 'jq' 'pacutils' 'curl')
|
|
makedepends=('signify')
|
|
optdepends=('bash-completion: bash completion'
|
|
'zsh: zsh completion'
|
|
'devtools: aur-chroot'
|
|
'vifm: default pager')
|
|
|
|
prepare() {
|
|
signify -V -p aurutils.pub -m "$pkgname-$pkgver".tar.gz \
|
|
-x "$pkgname-$pkgver".tar.gz.signify
|
|
}
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgver"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|