2014-12-03 14:17:05 +00:00
|
|
|
#
|
2016-12-04 20:37:17 +00:00
|
|
|
# Copyright 2008 Steven Barth <steven@midlink.org>
|
|
|
|
# Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
|
|
|
|
# Copyright 2013 Manuel Munz <freifunk at somakoma dot de>
|
2018-01-27 15:11:07 +00:00
|
|
|
# Copyright 2014-2018 Christian Schoenebeck <christian dot schoenebeck at gmail dot com>
|
2014-12-03 14:17:05 +00:00
|
|
|
#
|
2016-12-04 20:37:17 +00:00
|
|
|
# This is free software, licensed under the Apache License, Version 2.0
|
2014-12-03 14:17:05 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2016-12-04 20:37:17 +00:00
|
|
|
# PKG_NAME:=luci-app-ddns
|
2015-01-10 23:14:59 +00:00
|
|
|
|
2015-01-18 18:22:54 +00:00
|
|
|
# Version == major.minor.patch
|
|
|
|
# increase on new functionality (minor) or patches (patch)
|
2018-01-27 15:11:07 +00:00
|
|
|
PKG_VERSION:=2.4.9
|
2015-01-18 18:22:54 +00:00
|
|
|
|
|
|
|
# Release == build
|
|
|
|
# increase on changes of translation files
|
2018-09-19 12:00:43 +00:00
|
|
|
PKG_RELEASE:=7
|
2015-01-18 18:22:54 +00:00
|
|
|
|
|
|
|
PKG_LICENSE:=Apache-2.0
|
2018-07-30 19:55:08 +00:00
|
|
|
PKG_MAINTAINER:=Ansuel Smith <ansuelsmth@gmail.com>
|
2014-12-03 14:17:05 +00:00
|
|
|
|
2015-03-01 19:08:45 +00:00
|
|
|
# LuCI specific settings
|
|
|
|
LUCI_TITLE:=LuCI Support for Dynamic DNS Client (ddns-scripts)
|
2019-11-03 19:49:31 +00:00
|
|
|
LUCI_DEPENDS:=+luci-compat +luci-lib-ipkg +luci-mod-admin-full +ddns-scripts
|
2016-12-04 20:37:17 +00:00
|
|
|
# LUCI_PKGARCH:=all
|
2015-03-01 19:08:45 +00:00
|
|
|
|
2015-01-18 18:22:54 +00:00
|
|
|
define Package/$(PKG_NAME)/config
|
|
|
|
# shown in make menuconfig <Help>
|
|
|
|
help
|
|
|
|
$(LUCI_TITLE)
|
2015-03-01 19:08:45 +00:00
|
|
|
Version: $(PKG_VERSION)-$(PKG_RELEASE)
|
2015-01-18 18:22:54 +00:00
|
|
|
endef
|
|
|
|
|
2015-12-21 13:05:04 +00:00
|
|
|
include ../../luci.mk
|
2014-12-03 14:17:05 +00:00
|
|
|
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|