repo/extra/opendoas/build

16 lines
239 B
Plaintext
Raw Normal View History

2020-01-30 06:49:33 -07:00
#!/bin/sh -e
2020-11-14 21:25:28 -07:00
sed -i '/chown/d' GNUmakefile
2020-01-30 06:49:33 -07:00
./configure \
2020-11-15 10:45:50 -07:00
--prefix=/usr \
2020-01-30 06:49:33 -07:00
--enable-static \
--with-shadow \
--with-timestamp \
--without-pam
make
make DESTDIR="$1" install
2020-04-27 23:31:25 -06:00
install -Dm600 doas.conf "$1/etc/doas.conf"