27 lines
712 B
Bash
27 lines
712 B
Bash
# Template file for 'opendoas'
|
|
pkgname=opendoas
|
|
version=0.2
|
|
revision=1
|
|
wrksrc="OpenDoas-$version"
|
|
build_style=configure
|
|
conf_files="/etc/pam.d/doas"
|
|
hostmakedepends="bison"
|
|
makedepends="pam-devel"
|
|
short_desc="Portable OpenBSD doas to execute commands as another user"
|
|
maintainer="Duncaen <duncaen@voidlinux.eu>"
|
|
license="BSD"
|
|
homepage="https://github.com/Duncaen/OpenDoas"
|
|
distfiles="https://github.com/Duncaen/OpenDoas/archive/v${version}.tar.gz"
|
|
checksum=67ed58ba9e5f7cf838945d0601fc468a2bd03e2993269dd65f575fc2975ee259
|
|
|
|
pre_configure() {
|
|
cp ${FILESDIR}/doas.pam pam.d__doas__linux
|
|
sed -i bsd.prog.mk \
|
|
-e '/chown ${BINOWN}:${BINGRP}/d' \
|
|
-e '/chmod ${BINMODE}/d'
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|