]> git.armaanb.net Git - asd-repo.git/blob - core/opendoas/build
Restructure repository
[asd-repo.git] / core / opendoas / build
1 #!/bin/sh -e
2
3 sed -i '/chown/d' GNUmakefile
4
5 ./configure \
6     --prefix=/usr \
7     --enable-static \
8     --with-shadow \
9     --with-timestamp \
10     --without-pam \
11
12 make
13 make DESTDIR="$1" install
14
15 install -Dm600 doas.conf "$1/etc/doas.conf"