repo/extra/opendoas/build

19 lines
288 B
Plaintext
Raw Normal View History

2020-01-30 13:49:33 +00:00
#!/bin/sh -e
2021-07-03 20:41:26 +00:00
sed '/chown/d' GNUmakefile > _
mv -f _ GNUmakefile
2020-01-30 13:49:33 +00:00
./configure \
2020-11-15 17:45:50 +00:00
--prefix=/usr \
2020-01-30 13:49:33 +00:00
--enable-static \
--with-shadow \
--with-timestamp \
--without-pam
make
make DESTDIR="$1" install
2021-07-01 16:32:29 +00:00
mkdir -p "$1/etc"
cp -f doas.conf "$1/etc"
chmod 600 "$1/etc/doas.conf"