archlinux-pkgbuilds/aurutils/PKGBUILD

34 lines
1.1 KiB
Bash
Raw Normal View History

2020-10-24 05:41:54 +02:00
# Maintainer: Alad Wenter <https://github.com/AladW>
# Co-Maintainer: Cedric Girard <cgirard [dot] archlinux [at] valinor [dot] fr>
2016-03-26 20:17:11 +01:00
pkgname=aurutils
2023-03-02 10:51:15 +01:00
pkgver=11
2022-07-10 14:44:52 +02:00
pkgrel=1
2016-04-01 04:57:05 +02:00
pkgdesc='helper tools for the arch user repository'
2017-09-07 15:56:05 +02:00
url='https://github.com/AladW/aurutils'
2019-01-10 17:21:24 +01:00
arch=('any')
2017-09-10 19:56:46 +02:00
license=('custom:ISC')
2022-07-10 14:44:52 +02:00
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz")
changelog=aurutils.changelog
2021-01-04 21:31:07 +01:00
install=aurutils.install
2023-03-02 10:51:15 +01:00
sha256sums=('0f5732145f4793ac74eeb8461c66f5d37a1a3d562fbab0db473736475e8cedb1')
2022-07-10 14:44:52 +02:00
depends=('git' 'jq' 'pacutils' 'curl')
2019-01-10 17:21:24 +01:00
optdepends=('bash-completion: bash completion'
'zsh: zsh completion'
2019-01-10 17:21:24 +01:00
'devtools: aur-chroot'
2022-02-24 12:50:14 +01:00
'vifm: default pager'
2023-03-02 10:51:15 +01:00
'perl-json-xs: faster JSON serialization'
'ninja: aur-sync ninja support'
'bat: view-delta example script'
'git-delta: view-delta example script'
'setconf: aur-build --rebuild')
2020-10-24 05:41:54 +02:00
2019-01-10 17:21:24 +01:00
build() {
2020-11-03 17:05:41 +01:00
cd "$pkgname-$pkgver"
make AURUTILS_VERSION="$pkgver"
2017-10-06 23:15:25 +02:00
}
2016-03-26 20:17:11 +01:00
package() {
2020-11-03 17:05:41 +01:00
cd "$pkgname-$pkgver"
2019-01-10 17:21:24 +01:00
make DESTDIR="$pkgdir" install
2016-03-26 20:17:11 +01:00
}