forked from openwrt/packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Michal Vasilek <[email protected]>
- Loading branch information
Showing
3 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=opendoas | ||
PKG_VERSION:=6.8.2 | ||
PKG_RELEASE:=$(AUTORELEASE) | ||
|
||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz | ||
PKG_SOURCE_URL:=https://github.com/Duncaen/OpenDoas/releases/download/v$(PKG_VERSION) | ||
PKG_HASH:=4e98828056d6266bd8f2c93e6ecf12a63a71dbfd70a5ea99ccd4ab6d0745adf0 | ||
|
||
PKG_MAINTAINER:=Michal Vasilek <[email protected]> | ||
PKG_LICENSE:=ISC, BSD-3-Clause | ||
PKG_LICENSE_FILES:=LICENSE | ||
|
||
PKG_INSTALL:=1 | ||
PKG_BUILD_PARALLEL:=1 | ||
|
||
include $(INCLUDE_DIR)/package.mk | ||
|
||
define Package/opendoas | ||
SECTION:=utils | ||
CATEGORY:=Utilities | ||
TITLE:=Portable OpenBSD doas to execute commands as another user | ||
URL:=https://github.com/Duncaen/OpenDoas | ||
endef | ||
|
||
define Package/opendoas/description | ||
OpenDoas: a portable version of OpenBSD's doas command | ||
|
||
doas is a minimal replacement for the venerable sudo. It was initially | ||
written by Ted Unangst of the OpenBSD project to provide 95% of the features | ||
of sudo with a fraction of the codebase. | ||
endef | ||
|
||
define Package/opendoas/install | ||
$(INSTALL_DIR) $(1)/usr/bin | ||
$(CP) $(PKG_INSTALL_DIR)/usr/bin/doas $(1)/usr/bin/ | ||
endef | ||
|
||
$(eval $(call BuildPackage,opendoas)) |
11 changes: 11 additions & 0 deletions
11
utils/opendoas/patches/configure-ignore-invalid-arguments.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- a/configure | ||
+++ b/configure | ||
@@ -67,7 +67,7 @@ for x; do | ||
--uid-max) UID_MAX=$var ;; | ||
--gid-max) UID_MAX=$var ;; | ||
--help|-h) usage ;; | ||
- *) die "Error: unknown option $opt" ;; | ||
+ *) echo "Error: unknown option $opt" ;; | ||
esac | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- a/GNUmakefile | ||
+++ b/GNUmakefile | ||
@@ -21,7 +21,6 @@ install: ${PROG} ${PAM_DOAS} ${MAN} | ||
mkdir -p -m 0755 ${DESTDIR}${MANDIR}/man1 | ||
mkdir -p -m 0755 ${DESTDIR}${MANDIR}/man5 | ||
cp -f ${PROG} ${DESTDIR}${BINDIR} | ||
- chown ${BINOWN}:${BINGRP} ${DESTDIR}${BINDIR}/${PROG} | ||
chmod ${BINMODE} ${DESTDIR}${BINDIR}/${PROG} | ||
[ -n "${PAM_DOAS}" ] && cp ${PAM_DOAS} ${DESTDIR}${PAMDIR}/doas || true | ||
[ -n "${PAM_DOAS}" ] && chmod 0644 ${DESTDIR}${PAMDIR}/doas || true |