aboutsummaryrefslogtreecommitdiffstats
path: root/community/doas/APKBUILD
blob: 41344d16f4d0bd07e228ec5b8beffec7b691a7ab (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
40
# Maintainer: Drew DeVault <sir@cmpwn.com>
pkgname=doas
pkgver=6.0
pkgrel=0
pkgdesc="OpenBSD's temporary privledge escalation tool"
url="https://github.com/Duncaen/OpenDoas"
arch="all"
license="BSD"
makedepends="bison"
subpackages="$pkgname-doc"
source="
    $pkgname-$pkgver.tar.gz::https://github.com/Duncaen/OpenDoas/archive/v$pkgver.tar.gz
    doas.conf
"
builddir="$srcdir/OpenDoas-$pkgver"
options="$options suid"

build() {
	cd "$builddir"
	./configure \
		--prefix=/usr \
		--enable-static \
		--without-pam
	make
}

check() {
	cd "$builddir"
	# doas -v returns 1
	./doas -v || test $? = 1
}

package() {
	cd "$builddir"
	make install DESTDIR="$pkgdir"
	install -Dm440 "$srcdir"/doas.conf "$pkgdir"/etc/doas.conf
}

sha512sums="2bf5e00895a45d87785e7a494a1506844afd843ef5375e0b0e3795ebc24712bb941c6feeb87e426e41a240d40aca9b4c099f77220745bb7142a7a4b303441f60  doas-6.0.tar.gz
5035ae91293953b292c430334e949e11e5b482c5c91c7f018ac8286a791568a3006499649f487547a262291c0968618522fbc14acb5e2faa2af52accf15bbc49  doas.conf"