aboutsummaryrefslogtreecommitdiffstats
path: root/main/alpine-conf/APKBUILD
blob: 37dca1b7e839973ded24499bb1eacc246ed0c125 (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
32
33
34
35
36
37
38
39
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=alpine-conf
pkgver=3.3.2
pkgrel=0
pkgdesc="Alpine configuration management scripts"
url=http://git.alpinelinux.org/cgit/$pkgname
arch="all"
license="MIT"
depends="openrc>0.13"
source="http://dev.alpinelinux.org/archive/alpine-conf/alpine-conf-$pkgver.tar.xz
	"

_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"
	make VERSION=$pkgver-r$pkgrel || return 1
}

package() {
	cd "$_builddir"
	make install PREFIX= DESTDIR="$pkgdir" || return 1
	for i in commit exclude include status update; do
		ln -s lbu "$pkgdir"/sbin/lbu_$i
	done
}

md5sums="4b3a449af554d95b1b2d8c7f58849741  alpine-conf-3.3.2.tar.xz"
sha256sums="8875061df0ae18539b45307680f46f0441589c8b4a0e5a19ef5cb4eff9fa294f  alpine-conf-3.3.2.tar.xz"
sha512sums="e8335a47f21ca78adfda0f01e7f000015a2ecbff3f1eb965d4139c1e8784d2894716655b9d0de7c7c8abb306128838ae13c62aec87738132c44a410addd26141  alpine-conf-3.3.2.tar.xz"