214fe53106
Let's bump at to version 3.2.2 by: - moving SITE to http://software.calhariz.com/at that is the official at realease site while the actual(https://salsa.debian.org/debian/at) doesn't provide consitent tarballs. - rebasing 2 local patches(some some of them has not been accepted upstream because of removing -g root -o root while installing, while other simply has not been taken into account for 1 year. Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
27 lines
766 B
Makefile
27 lines
766 B
Makefile
################################################################################
|
|
#
|
|
# at
|
|
#
|
|
################################################################################
|
|
|
|
AT_VERSION = 3.2.2
|
|
AT_SOURCE = at_$(AT_VERSION).orig.tar.gz
|
|
AT_SITE = http://software.calhariz.com/at
|
|
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))
|