mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-04 18:45:52 +00:00
9e90d1b31a
Some packages have issues with parallel builds and need to set TERMUX_MAKE_PROCESSES=1. All other build variables that package recipes set are prefixed with TERMUX_PKG, use that for MAKE_PROCESSES as well for consistency. %ci:no-build
38 lines
1.1 KiB
Bash
38 lines
1.1 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://salsa.debian.org/debian/at
|
|
TERMUX_PKG_DESCRIPTION="AT and batch delayed command scheduling utility and daemon"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=3.2.5
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_SRCURL=https://deb.debian.org/debian/pool/main/a/at/at_${TERMUX_PKG_VERSION}.orig.tar.gz
|
|
TERMUX_PKG_SHA256=bb066b389d7c9bb9d84a35738032b85c30cba7d949f758192adc72c9477fd3b8
|
|
TERMUX_PKG_SUGGESTS="termux-services"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
# Force make -j1.
|
|
TERMUX_PKG_MAKE_PROCESSES=1
|
|
|
|
# Setting loadavg_mx to 8.0 as most devices (8 core)
|
|
# do not have loadavg below 5-6.
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
ac_cv_path_SENDMAIL=$TERMUX_PREFIX/bin/sendmail
|
|
--with-loadavg_mx=8.0
|
|
--with-etcdir=$TERMUX_PREFIX/etc
|
|
--with-jobdir=$TERMUX_PREFIX/var/spool/atd
|
|
--with-atspool=$TERMUX_PREFIX/var/spool/atd
|
|
"
|
|
|
|
# at.allow and at.deny are not supported in Termux.
|
|
TERMUX_PKG_RM_AFTER_INSTALL="
|
|
share/man/man5
|
|
"
|
|
|
|
TERMUX_PKG_SERVICE_SCRIPT=("atd" "mkdir -p $TERMUX_PREFIX/var/run && exec atd")
|
|
|
|
termux_step_create_debscripts() {
|
|
cat <<- EOF > ./postinst
|
|
#!${TERMUX_PREFIX}/bin/sh
|
|
mkdir -p $TERMUX_PREFIX/var/run
|
|
EOF
|
|
}
|