repo/extra/opendoas/build
2021-07-03 20:41:26 +00:00

19 lines
288 B
Bash
Executable File

#!/bin/sh -e
sed '/chown/d' GNUmakefile > _
mv -f _ GNUmakefile
./configure \
--prefix=/usr \
--enable-static \
--with-shadow \
--with-timestamp \
--without-pam
make
make DESTDIR="$1" install
mkdir -p "$1/etc"
cp -f doas.conf "$1/etc"
chmod 600 "$1/etc/doas.conf"