shadow: update to 4.14.3
[openadk.git] / package / .templateprog / Makefile
blob919e85807a9b645c28b1e7767a2f86cb0aa4b412
1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 include $(ADK_TOPDIR)/rules.mk
6 PKG_NAME:= @PKG@
7 PKG_VERSION:= @VER@
8 PKG_RELEASE:= 1
9 PKG_HASH:= add sha256 checksum of package here
10 PKG_DESCR:= add short description
11 PKG_SECTION:= add section
12 PKG_DEPENDS:= add dependendant package names
13 PKG_BUILDDEP:= add packages which need to be compiled
14 PKG_URL:= add project url
15 PKG_SITES:= add download url without package name
17 # if downloaded package is not ending with .tar.xz use following
18 #DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.bz2
20 include $(ADK_TOPDIR)/mk/package.mk
22 $(eval $(call PKG_template,@UPKG@,@PKG@,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION)))
24 @PKG@-install:
25 $(INSTALL_DIR) $(IDIR_@UPKG@)/usr/bin
26 $(INSTALL_BIN) $(WRKINST)/usr/bin/@PKG@ \
27 $(IDIR_@UPKG@)/usr/bin
29 include $(ADK_TOPDIR)/mk/pkg-bottom.mk