0
0
mirror of https://github.com/termux/termux-packages.git synced 2024-11-23 13:46:16 +00:00
termux-packages/root-packages/authbind/build.sh
2023-04-18 19:30:26 +09:00

30 lines
965 B
Bash

TERMUX_PKG_HOMEPAGE=https://www.chiark.greenend.org.uk/ucgi/~ian/git/authbind.git
TERMUX_PKG_DESCRIPTION="Bind sockets to privileged ports without root"
TERMUX_PKG_LICENSE="GPL-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=2.1.3
TERMUX_PKG_SRCURL=https://deb.debian.org/debian/pool/main/a/authbind/authbind_${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=0f5c70aa5e3b09497fa2f93992aef33872f5a4d50d68040534f7a9751cc579b7
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_MAKE_INSTALL_TARGET="install install_man"
termux_step_pre_configure() {
sed -i 's|/\.$|/|g' Makefile
}
termux_step_create_debscripts() {
cat <<-EOF > ./postinst
#!$TERMUX_PREFIX/bin/sh
mkdir -p $TERMUX_PREFIX/etc/authbind/byaddr
mkdir -p $TERMUX_PREFIX/etc/authbind/byport
mkdir -p $TERMUX_PREFIX/etc/authbind/byuid
echo
echo "********"
echo "Remember to setuid root the helper program"
echo
echo " $TERMUX_PREFIX/libexec/authbind/helper"
echo "********"
echo
EOF
}