2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 22:12:27 +00:00
repo/extra/opendoas/build

18 lines
276 B
Plaintext
Raw Normal View History

2020-01-30 13:49:33 +00:00
#!/bin/sh -e
2021-07-27 15:14:24 +00:00
BINOWN="$(id -u)" \
BINGRP="$(id -g)" \
2020-01-30 13:49:33 +00:00
./configure \
2020-11-15 17:45:50 +00:00
--prefix=/usr \
2020-01-30 13:49:33 +00:00
--enable-static \
--with-shadow \
--with-timestamp \
--without-pam
make
2023-03-02 14:40:00 +00:00
make DESTDIR="$1" install
2020-01-30 13:49:33 +00:00
2021-07-01 16:32:29 +00:00
mkdir -p "$1/etc"
cp -f doas.conf "$1/etc"
chmod 600 "$1/etc/doas.conf"