forked from kiss-community/repo
18 lines
276 B
Bash
Executable File
18 lines
276 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
BINOWN="$(id -u)" \
|
|
BINGRP="$(id -g)" \
|
|
./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"
|