blob: c93698f3c7c4771962a06d94b09d4d95bf31d21c (
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
|
# Contributor: kohnish <kohnish@gmx.com>
# Contributor: Michał Polański <michal@polanski.me>
# Maintainer: kohnish <kohnish@gmx.com>
pkgname=buildah
pkgver=1.14.0
pkgrel=0
pkgdesc="A tool that facilitates building OCI container images"
url="https://github.com/containers/buildah"
arch="all"
license="Apache-2.0"
makedepends="go go-md2man lvm2-dev gpgme-dev libseccomp-dev btrfs-progs-dev bash"
subpackages="$pkgname-doc"
options="!check" # TODO: enable tests
source="$pkgname-$pkgver.tar.gz::https://github.com/containers/buildah/archive/v$pkgver.tar.gz"
build() {
GIT_COMMIT="$pkgver" make
}
package() {
GIT_COMMIT="$pkgver" make install PREFIX=/usr DESTDIR="$pkgdir"
}
sha512sums="c2fe27ccff81cc22dcb398f6d57f618015a1f534510888966483002d552c5f233b8899f639dac15d0f299c6c618e6f1d9889e65c745ce4709e7abd9498258a86 buildah-1.14.0.tar.gz"
|