summaryrefslogtreecommitdiffstats
path: root/main/alpine-conf/APKBUILD
blob: 26590feca1b8d1dd3ceb1f7611a539bb577b33c4 (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
27
28
29
30
31
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=alpine-conf
pkgver=2.1
pkgrel=1
pkgdesc="Alpine configuration management scripts"
url=http://git.alpinelinux.org/cgit/$pkgname
depends="openrc"
source="http://git.alpinelinux.org/cgit/$pkgname/snapshot/$pkgname-$pkgver.tar.bz2
	0001-setup-disk-boot-fix-for-mdadm-3.1.1.patch"
license="GPL-2"

_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
	cd "$_builddir"
	patch -p1 -i "$srcdir"/0001-setup-disk-boot-fix-for-mdadm-3.1.1.patch
}

build() {
	cd "$_builddir"
	make || return 1
}

package() {
	cd "$_builddir"
	make install PREFIX= DESTDIR="$pkgdir"
	for i in commit exclude include status update; do
		ln -s lbu "$pkgdir"/sbin/lbu_$i
	done
}
md5sums="d9b13b849abbe5f2061aa8af0c4ac7ce  alpine-conf-2.1.tar.bz2
be3e55fd58e798ec3a235d7220b31811  0001-setup-disk-boot-fix-for-mdadm-3.1.1.patch"