300f9c9c9d
Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
18 lines
476 B
Makefile
18 lines
476 B
Makefile
#############################################################
|
|
#
|
|
# OpenNTPD
|
|
#
|
|
#############################################################
|
|
|
|
OPENNTPD_VERSION = 3.9p1
|
|
OPENNTPD_SITE = ftp://ftp.openbsd.org/pub/OpenBSD/OpenNTPD
|
|
OPENNTPD_CONF_OPT = --with-builtin-arc4random --disable-strip
|
|
|
|
define OPENNTPD_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/usr/sbin/ntpd
|
|
rm -f $(TARGET_DIR)/etc/ntpd.conf
|
|
rm -f $(TARGET_DIR)/usr/share/man/man?/ntpd*
|
|
endef
|
|
|
|
$(eval $(call AUTOTARGETS))
|