blob: ebfc4c01afa184b9291615feef8bb9424646e4cf (
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.8
pkgrel=0
pkgdesc="A tool that facilitates building OCI container images"
url="https://github.com/containers/buildah"
arch="all !mips !mips64" # fails to build on mips
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="8cc64d8262ffe3727f4c32051f4f3456ab0b54f221ce6d144a301b732170eb487dc356f4e056c804ca9806172e60920239b62800a0aac2dc5de83cd656ea97f3 buildah-1.14.8.tar.gz"
|