aboutsummaryrefslogtreecommitdiff
path: root/repos/extra/opendoas/abuild
blob: 449a92d7b4a5bf7fd62a1f4ed893cfadd2e01664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name=opendoas
version=6.8.2
release=2
source="https://github.com/Duncaen/OpenDoas/releases/download/v${version}/${name}-${version}.tar.xz
	doas.conf
	better-wayland-support.patch"

build() {
	BINOWN="$(id -u)" \
	BINGRP="$(id -g)" \
	./configure \
	    --prefix=/usr \
	    --with-shadow \
	    --with-timestamp \
	    --without-pam
	make
	make install
	
	mkdir -p $PKG/etc
	cp $SRC/doas.conf $PKG/etc
	chmod 600 $PKG/etc/doas.conf
}