summaryrefslogtreecommitdiff
path: root/package/.template
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-09-15 13:25:01 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2010-09-15 13:25:01 +0200
commit30fc540d30f82c534a3bdfff265f8b62cb770551 (patch)
treecc92aeeb03088d96ee6c00d85daf10f979ffb960 /package/.template
parent94a617136b6b5dea165b55bc011e96e460b3f1f9 (diff)
add description for subpackages, flavours and choices to template
Diffstat (limited to 'package/.template')
-rw-r--r--package/.template/Makefile38
1 files changed, 37 insertions, 1 deletions
diff --git a/package/.template/Makefile b/package/.template/Makefile
index 977e4aede..e5593b3fb 100644
--- a/package/.template/Makefile
+++ b/package/.template/Makefile
@@ -3,6 +3,7 @@
include $(TOPDIR)/rules.mk
+# always use tab spaces as separator, no spaces
PKG_NAME:= @PKG@
PKG_VERSION:= @VER@
PKG_RELEASE:= 1
@@ -10,10 +11,45 @@ PKG_MD5SUM:= add md5sum of package here
PKG_DESCR:= add short description
PKG_SECTION:= add section
PKG_DEPENDS:= add dependendant package names
-PKG_BUILDDEP+= add packages which need to be compiled
+PKG_BUILDDEP:= add packages which need to be compiled
PKG_URL:= add project url
PKG_SITES:= add download url without package name
+# if more than one binary package is created, add symbol names of all here
+# leave variable empty, when no binary package is created. You can set it
+# to override PKG_NAME for the main binary package
+#PKG_SUBPKGS:= PKG SUBPKG1 SUBPKG2
+# you can add separate, build depends, run depends, section and description
+# build time dependency for subpackage SUBPKG1, package dir
+#PKGSB_SUBPKG1:=
+# runtime dependency for subpackage SUBPKG1, package names
+#PKGSS_SUBPKG1:=
+# section for subpackage SUBPKG1
+#PKGSC_SUBPKG1:=
+# description for subpackage SUBPKG1
+#PKGSD_SUBPKG1:=
+
+# define your flavours for your package here, WITH_SSL f.e.
+#PKG_FLAVOURS:= WITH_SSL
+# flavour description
+#PKGFD_WITH_SSL:= enable SSL support
+# flavour runtime dependency, package name
+#PKGFS_WITH_SSL:= libopenssl
+# flavour build time dependency, package dir
+#PKGFB_WITH_SSL:= openssl
+
+# define your choices for your package here, f.e. different SSL implementations
+#PKG_CHOICES:= WITH_OPENSSL WITH_GNUTLS
+# package description for each choice
+#PKGCD_WITH_OPENSSL:= SSL support via OpenSSL library
+#PKGCD_WITH_GNUTLS:= SSL support via GNUTLS library
+# package build time dependencies
+#PKGCB_WITH_OPENSSL:= openssl
+#PKGCB_WITH_GNUTLS:= gnutls
+# package runtime dependencies
+#PKGCS_WITH_OPENSSL:= libopenssl
+#PKGCS_WITH_GNUTLS:= libgnutls
+
# if downloaded package is not ending with .tar.gz use following
#DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2