8ac6a2f94c
inadyn is a DynamicDNS client/updater which works with dyndns.com, noip.com and many other DDNS providers. It is minimal in footprint and requirements, supports IP caching, multiple providers, multiple domain names, and a variety of other situations. [Peter: fixup whitespace / trailing spaces] Signed-off-by: Dave Purdy <david.c.purdy@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
24 lines
656 B
Makefile
24 lines
656 B
Makefile
#############################################################
|
|
#
|
|
# inadyn
|
|
#
|
|
#############################################################
|
|
|
|
INADYN_VERSION = 1.98.1
|
|
INADYN_SOURCE = inadyn-$(INADYN_VERSION).tar.bz2
|
|
INADYN_SITE = https://github.com/downloads/troglobit/inadyn
|
|
|
|
define INADYN_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define INADYN_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/src/inadyn $(TARGET_DIR)/usr/sbin/inadyn
|
|
$(INSTALL) -D -m 0644 package/inadyn/inadyn.conf \
|
|
$(TARGET_DIR)/etc/inadyn.conf
|
|
$(INSTALL) -D -m 0755 package/inadyn/S70inadyn \
|
|
$(TARGET_DIR)/etc/init.d/S70inadyn
|
|
endef
|
|
|
|
$(eval $(call GENTARGETS))
|