716d75350b
With highly parallel builds, the input files for parsetime.l are not alway present when needed, breaking the build. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
#############################################################
|
|
#
|
|
# at
|
|
#
|
|
#############################################################
|
|
AT_VERSION = 3.1.12
|
|
AT_SOURCE = at_$(AT_VERSION).orig.tar.gz
|
|
AT_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/a/at
|
|
# missing deps for parsetime.l
|
|
AT_MAKE = $(MAKE1)
|
|
AT_AUTORECONF = YES
|
|
AT_INSTALL_STAGING = NO
|
|
AT_INSTALL_TARGET = YES
|
|
|
|
AT_DEPENDENCIES = $(if $(BR2_PACKAGE_FLEX),flex)
|
|
|
|
AT_CONF_OPT = \
|
|
--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_INITSCRIPT
|
|
$(INSTALL) -m 0755 -D package/at/S99at $(TARGET_DIR)/etc/init.d/S99at
|
|
endef
|
|
|
|
AT_POST_INSTALL_TARGET_HOOKS += AT_INSTALL_INITSCRIPT
|
|
|
|
define AT_UNINSTALL_TARGET_CMDS
|
|
rm -rf $(addprefix $(TARGET_DIR),/usr/lib/atspool \
|
|
/usr/lib/atjobs \
|
|
/etc/at.deny \
|
|
/etc/init.d/S99at \
|
|
/usr/bin/at \
|
|
/usr/bin/atrm \
|
|
/usr/bin/atq \
|
|
/usr/sbin/atd \
|
|
/usr/sbin/atrun)
|
|
rm -f $(addprefix $(TARGET_DIR)/usr/man/man*/, \
|
|
at.1 atq.1 atrm.1 batch.1 at_allow.5 at_deny.5 atd.8 atrun.8)
|
|
endef
|
|
|
|
$(eval $(call AUTOTARGETS,package,at))
|