blob: 93feb65f7bb80f86370c1252abab91a8942e2c58 (
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.1
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
}
|