luci.mk: add URL and MAINTAINER fields to package-definitions
Add the LUCI_URL and LUCI_MAINTAINER variables to pass them to the buildpackage
defines. Give them some sane defaults and allow overwritting by the individual
package.
Signed-off-by: Sven Roederer <devel-sven@geroedel.de>
(cherry picked from commit ae0795deb0
)
This commit is contained in:
parent
74e04dde74
commit
00aa38894f
1 changed files with 4 additions and 0 deletions
4
luci.mk
4
luci.mk
|
@ -12,6 +12,8 @@ LUCI_DEFAULTS:=$(notdir $(wildcard ${CURDIR}/root/etc/uci-defaults/*))
|
|||
LUCI_PKGARCH?=$(if $(realpath src/Makefile),,all)
|
||||
LUCI_SECTION?=luci
|
||||
LUCI_CATEGORY?=LuCI
|
||||
LUCI_URL?=https://github.com/openwrt/luci
|
||||
LUCI_MAINTAINER?=OpenWrt LuCI community
|
||||
|
||||
# Language code titles
|
||||
LUCI_LANG.ar=العربية (Arabic)
|
||||
|
@ -130,6 +132,8 @@ define Package/$(PKG_NAME)
|
|||
VERSION:=$(if $(PKG_VERSION),$(PKG_VERSION),$(PKG_SRC_VERSION))
|
||||
$(if $(LUCI_EXTRA_DEPENDS),EXTRA_DEPENDS:=$(LUCI_EXTRA_DEPENDS))
|
||||
$(if $(LUCI_PKGARCH),PKGARCH:=$(LUCI_PKGARCH))
|
||||
URL:=$(LUCI_URL)
|
||||
MAINTAINER:=$(LUCI_MAINTAINER)
|
||||
endef
|
||||
|
||||
ifneq ($(LUCI_DESCRIPTION),)
|
||||
|
|
Loading…
Reference in a new issue