forked from kiss-community/repo
409439279a
No longer needed as of 3.8.1.
18 lines
263 B
Bash
Executable File
18 lines
263 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 install
|
|
|
|
mkdir -p "$1/etc"
|
|
cp -f doas.conf "$1/etc"
|
|
chmod 600 "$1/etc/doas.conf"
|