blob: b5513d66ae15e3b2b080fb6dbe95042f791bb675 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Contributor: kohnish <kohnish@gmx.com>
# Maintainer: kohnish <kohnish@gmx.com>
pkgname="buildah"
pkgver="1.12.0"
pkgrel=0
pkgdesc="Buildah - a tool that facilitates building Open Container Initiative (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"
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="ed7d77dfe88f613ef4f756455d889d707707ad16f8f6a9b514a8fbaabb56fef58db54ceb2344954a9311bcc6f1f000b21ac461f9b612b8534ae6a4594ad7a16d buildah-1.12.0.tar.gz"
|