blob: 2d64ab321a77c686d7b0c0685833d8eaa5ed3d74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Portable fork of OpenBSD's doas command
# URL: https://github.com/Duncaen/OpenDoas/
# Maintainer: Shokara Kou, shokara at kalli dot st
# Depends on: bzip2 xz zlib zstd libevent
name=doas
version=6.8.2
release=1
source=(https://github.com/Duncaen/OpenDoas/releases/download/v$version/opendoas-$version.tar.xz)
build() {
cd opendoas-$version
./configure \
--prefix=/usr \
--without-pam \
--with-shadow \
--with-timestamp
make
make DESTDIR=$PKG install
}
|