dc172396fb
At is now available on a git repository at: https://salsa.debian.org/debian/at Main changes 3.1.16 -> 3.1.23: - add support for SELinux, multiple files - improve atd.service, see bug report 892819 - fix various bugs and warnings - finalized script to release software So: - change AT_SITE_METHOD to git pointing to release/3.1.23 - update tarball sha256 in hash file - improved S99at script: if /var/spool is linked to /tmp, .SEQ file will be lost and atd won't work neither for a live session. Create .SEQ file if not found, warning during start that after reboot atjobs could be lost. Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com> Reviewed-by: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
30 lines
906 B
Makefile
30 lines
906 B
Makefile
################################################################################
|
|
#
|
|
# at
|
|
#
|
|
################################################################################
|
|
|
|
AT_VERSION = release/3.1.23
|
|
AT_SITE = https://salsa.debian.org/debian/at.git
|
|
AT_SITE_METHOD = git
|
|
# Tried to add missing deps for parsetime.l but still parallel build fails
|
|
# in some case, so at the moment let's keep MAKE1
|
|
AT_MAKE = $(MAKE1)
|
|
AT_AUTORECONF = YES
|
|
AT_DEPENDENCIES = $(if $(BR2_PACKAGE_FLEX),flex) host-bison host-flex
|
|
AT_LICENSE = GPL-2.0+, GPL-3.0+, ISC
|
|
AT_LICENSE_FILES = Copyright COPYING
|
|
|
|
AT_CONF_OPTS = \
|
|
--with-jobdir=/var/spool/cron/atjobs \
|
|
--with-atspool=/var/spool/cron/atspool \
|
|
--with-daemon_username=root \
|
|
--with-daemon_groupname=root \
|
|
SENDMAIL=/usr/sbin/sendmail
|
|
|
|
define AT_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 0755 -D package/at/S99at $(TARGET_DIR)/etc/init.d/S99at
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|