blob: 5d0b289984496455da7f50158e987a88cf1587f9 (
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
|
# Maintainer: Alad Wenter <https://github.com/AladW>
pkgname=aurum-git
pkgver=0.2.r14.ge084aaa
pkgrel=1
pkgdesc='high-level wrapper for aurutils with extra features'
url='https://github.com/AladW/aurum'
arch=('any')
license=('custom:ISC')
source=('git+https://github.com/AladW/aurum')
sha256sums=('SKIP')
conflicts=('aurum')
provides=("aurum=${pkgver%%.r*}")
depends=('git' 'aurutils' 'bat' 'git-delta' 'ninja')
makedepends=('git')
pkgver() {
cd aurum
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/; s/-/./g'
}
build() {
cd aurum
make
}
package() {
cd aurum
make DESTDIR="$pkgdir" install
}
|