Makefile 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(TOPDIR)/rules.mk
  4. PKG_NAME:= @PKG@
  5. PKG_VERSION:= @VER@
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= @add md5sum of package here@
  8. PKG_DESCR:= @add short description@
  9. PKG_SECTION:= @add section@
  10. PKG_DEPENDS:= @add dependendant package names@
  11. PKG_URL:= @add project url@
  12. PKG_SITES:= @add download url without package name@
  13. # if downloaded package is not ending with .tar.gz use following
  14. #DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
  15. include $(TOPDIR)/mk/package.mk
  16. $(eval $(call PKG_template,@UPKG@,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. CONFIGURE_STYLE:= gnu
  18. # use following to add ./configure options
  19. #CONFIGURE_ARGS+= --disable-foo
  20. # overwrite any configure variables
  21. #CONFIGURE_ENV+= ac_cv_func_setpgrp_void=yes
  22. BUILD_STYLE:= auto
  23. INSTALL_STYLE:= auto
  24. # please install all files and directories to the package dir
  25. post-install:
  26. $(INSTALL_DIR) $(IDIR_@UPKG@)/usr/bin
  27. $(INSTALL_BIN) $(WRKINST)/usr/bin/@PKG@ \
  28. $(IDIR_@UPKG@)/usr/bin
  29. include ${TOPDIR}/mk/pkg-bottom.mk