blob: 30be9bf5b08a0e2fed18eba19842d70bb0a9c7cd (
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
|
# Maintainer: Matthias Fulz <mfulz at olznet dot de>
pkgname=archbuilder
pkgver=0.9.5
pkgrel=1
pkgdesc='makepkg wrapper that uses buildah'
url='https://github.com/mfulz/archbuilder'
arch=('any')
source=(
"https://github.com/mfulz/$pkgname/archive/refs/tags/v$pkgver.tar.gz"
)
sha256sums=('c55e963e34fb9d0d0b8b5a658428acd073f4fb53536f145d118c3729f7ab4e4b')
depends=('buildah')
backup=(
'etc/archbuilder/archbuilder.env'
)
build() {
cd "$pkgname-$pkgver"
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}
|