blob: 6060bcfea5c4d22a471377648bb7cffda2240308 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Maintainer: Alad Wenter <https://github.com/AladW>
pkgname=aurutils-git
pkgver=1.5.3.r309.g8603a1f
pkgrel=1
pkgdesc='helper tools for the arch user repository'
url='https://github.com/AladW/aurutils'
arch=('any')
license=('custom:ISC')
source=('git+https://github.com/AladW/aurutils')
sha256sums=('SKIP')
conflicts=('aurutils')
provides=('aurutils')
depends=('pacman>=5.0' 'git' 'jq' 'pacutils')
makedepends=('git')
optdepends=('devtools: aurbuild_chroot'
'expac: aursift'
'parallel: threaded downloads'
'vifm: build file interaction')
pkgver() {
cd aurutils
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/; s/-/./g'
}
build() {
cd aurutils
make DESTDIR="$pkgdir"
}
package() {
cd aurutils
make DESTDIR="$pkgdir" install
}
|