2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00
repo/extra/opendoas/build
2023-03-05 17:34:06 -06:00

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"