Makefile 925 B

123456789101112131415161718192021222324252627282930
  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:= pdnsd
  5. PKG_VERSION:= 1.2.7
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 114b3b21b09b43cbfcccdde726b84c12
  8. PKG_DESCR:= Proxy DNS server with permanent caching
  9. PKG_SECTION:= net
  10. PKG_DEPENDS:= libpthread
  11. PKG_URL:= http://www.phys.uu.nl/~rombouts/pdnsd.html
  12. PKG_SITES:= http://www.phys.uu.nl/~rombouts/pdnsd/releases/
  13. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}-par.tar.gz
  14. include $(TOPDIR)/mk/package.mk
  15. $(eval $(call PKG_template,PDNSD,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. CONFIGURE_STYLE:= gnu
  17. BUILD_STYLE:= auto
  18. INSTALL_STYLE:= auto
  19. post-install:
  20. $(INSTALL_DIR) $(IDIR_PDNSD)/usr/sbin
  21. $(INSTALL_BIN) $(WRKINST)/usr/sbin/pdnsd{,-ctl} $(IDIR_PDNSD)/usr/sbin/
  22. include ${TOPDIR}/mk/pkg-bottom.mk