From ac0a30b7d44952b8faf4ac3c4e521ee2dff04135 Mon Sep 17 00:00:00 2001 From: Shokara Kou Date: Sun, 12 Dec 2021 18:11:20 -0500 Subject: add ports Ahhh! I forgot to put these under a git repo. :( --- doas/.footprint | 9 +++++++++ doas/.md5sum | 1 + doas/Pkgfile | 22 ++++++++++++++++++++++ 3 files changed, 32 insertions(+) create mode 100644 doas/.footprint create mode 100644 doas/.md5sum create mode 100644 doas/Pkgfile (limited to 'doas') diff --git a/doas/.footprint b/doas/.footprint new file mode 100644 index 0000000..a92d2a5 --- /dev/null +++ b/doas/.footprint @@ -0,0 +1,9 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwsr-xr-x root/root usr/bin/doas +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/doas.1.gz +drwxr-xr-x root/root usr/share/man/man5/ +-rw-r--r-- root/root usr/share/man/man5/doas.conf.5.gz diff --git a/doas/.md5sum b/doas/.md5sum new file mode 100644 index 0000000..597ffd0 --- /dev/null +++ b/doas/.md5sum @@ -0,0 +1 @@ +ebf9f1c87782afdbffd58676f4c8a353 opendoas-6.8.1.tar.xz diff --git a/doas/Pkgfile b/doas/Pkgfile new file mode 100644 index 0000000..93feb65 --- /dev/null +++ b/doas/Pkgfile @@ -0,0 +1,22 @@ +# Description: Portable fork of OpenBSD's doas command +# URL: https://github.com/Duncaen/OpenDoas/ +# Maintainer: Shokara Kou, shokara at kalli dot st +# Depends on: bzip2 xz zlib zstd libevent + +name=doas +version=6.8.1 +release=1 +source=(https://github.com/Duncaen/OpenDoas/releases/download/v$version/opendoas-$version.tar.xz) + +build() { + cd opendoas-$version + + ./configure \ + --prefix=/usr \ + --without-pam \ + --with-shadow \ + --with-timestamp + + make + make DESTDIR=$PKG install +} -- cgit v1.2.3