1
0

more cleanup

This commit is contained in:
dtb
2022-06-02 20:16:29 -04:00
parent b65d3b2adf
commit 271b66dad9
7 changed files with 4 additions and 56 deletions

17
dist/doas-sudo/PKGBUILD vendored Normal file
View File

@@ -0,0 +1,17 @@
# Maintainer: deven <trinity at trinitydotmoe>
# VERY LIGHTLY modified version of the AUR package opendoas-sudo
pkgname=doas-sudo
pkgver=1
pkgrel=1
pkgdesc="A symlink for using the port of BSD's doas(1) as a drop-in replacement to sudo"
arch=('any')
url="https://github.com/slicer69/doas"
license=('MIT')
depends=('doas')
provides=('sudo')
conflicts=('sudo')
package() {
install -d "$pkgdir"/usr/bin
ln -s $(which doas) "$pkgdir"/usr/bin/sudo
}