e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
31 lines
712 B
Makefile
31 lines
712 B
Makefile
#############################################################
|
|
#
|
|
# noip
|
|
#
|
|
#############################################################
|
|
|
|
NOIP_VERSION = 2.1.9
|
|
NOIP_SITE = http://www.no-ip.com/client/linux
|
|
NOIP_SOURCE = noip-duc-linux.tar.gz
|
|
|
|
define NOIP_BUILD_CMDS
|
|
sed -i -e "s:\(#define CONFIG_FILENAME\).*:\1 \"/etc/no-ip2.conf\":" \
|
|
$(@D)/noip2.c
|
|
$(MAKE) -C $(@D) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" \
|
|
PREFIX=/usr CONFDIR=/etc
|
|
endef
|
|
|
|
define NOIP_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 -D $(@D)/noip2 $(TARGET_DIR)/usr/sbin/noip2
|
|
endef
|
|
|
|
define NOIP_UNINSTALL_TARGET_CMDS
|
|
rm -f "$(TARGET_DIR)/usr/sbin/noip2"
|
|
endef
|
|
|
|
define NOIP_CLEAN_CMDS
|
|
$(MAKE) -C $(@D) clean
|
|
endef
|
|
|
|
$(eval $(generic-package))
|