aboutsummaryrefslogtreecommitdiffstats
path: root/community/alpine-make-rootfs/APKBUILD
blob: b0269f1f0b77ce81e96d6849b5b38b6bc09cbb95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=alpine-make-rootfs
pkgver=0.1.0
pkgrel=0
pkgdesc="Make customized Alpine Linux rootfs (base image) for containers"
url="https://github.com/jirutka/alpine-make-rootfs"
arch="noarch"
license="MIT"
depends="tar"
source="$pkgname-$pkgver.tar.gz::https://github.com/jirutka/$pkgname/archive/v$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"
options="!check"  # no suitable tests provided

package() {
	cd "$builddir"
	make install DESTDIR="$pkgdir" PREFIX=/usr
}

sha512sums="26cf0bb2298f578d03e8906a3ee8638465433ecfbbd05606106e33f4b0e0a59cc196c6b98b98fbe8e9ee24a2833ecbabccf50ce3685e6598f4b9b5b8b47b8716  alpine-make-rootfs-0.1.0.tar.gz"