pkg: add PKG_LICENSE to templates

This commit is contained in:
Bas Stottelaar 2020-01-06 00:29:55 +01:00
parent 0e6b22dd2e
commit 19575ea4b6
2 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,7 @@
PKG_NAME= # name of the package
PKG_URL= # source url of the package's git repository
PKG_VERSION= # version of the package to use e.g. a git commit/ref
PKG_LICENSE= # license of the package
.PHONY: all

View File

@ -2,6 +2,7 @@ PKG_NAME = my_pkg # name of the package
PKG_URL = http://example.com/downloads # source url of the package e.g. a git repository
PKG_VERSION = v1.2.3 # version of the package to use e.g. a git commit/ref
PKG_EXT = zip # extension of this package
PKG_LICENSE = MIT # license of the package
ifneq ($(RIOTBASE),)
include $(RIOTBASE)/Makefile.base