337aa51f3f
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for GPLv3/GPLv3+ is GPL-3.0/GPL-3.0+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv3\>/GPL-3.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
29 lines
859 B
Makefile
29 lines
859 B
Makefile
################################################################################
|
|
#
|
|
# at
|
|
#
|
|
################################################################################
|
|
|
|
AT_VERSION = 3.1.16
|
|
AT_SOURCE = at_$(AT_VERSION).orig.tar.gz
|
|
AT_SITE = http://snapshot.debian.org/archive/debian/20141023T043132Z/pool/main/a/at
|
|
# missing deps for parsetime.l
|
|
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))
|