forked from kiss-community/repo
16 lines
246 B
Bash
Executable File
16 lines
246 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
sed -i '/chown/d' bsd.prog.mk
|
|
sed -i 's/111/755/' Makefile
|
|
|
|
./configure \
|
|
--enable-static \
|
|
--with-shadow \
|
|
--with-timestamp \
|
|
--without-pam
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
install -D doas.conf "$1/etc/doas.conf"
|