blob: 93fe3a6a5162757c30de1a3db3bab8c547d858e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh -e
./configure \
--prefix=/usr \
--enable-static \
--with-timestamp \
--without-pam
# Do not change ownership as the package manager handles this.
clsed /chown/d GNUmakefile
make
make DESTDIR="$1" install
clinst -Dm640 doas.conf "$1/etc/doas.conf"
|