Makefile 986 B

12345678910111213141516171819202122232425262728293031
  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 ${ADK_TOPDIR}/rules.mk
  4. PKG_NAME:= dnsmasq
  5. PKG_VERSION:= 2.71
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 9e2e4d59c75e71ee3ca817ff0f9be69e
  8. PKG_DESCR:= lightweight dns, dhcp and tftp server
  9. PKG_SECTION:= net/dns
  10. PKG_URL:= http://thekelleys.org.uk/dnsmasq/
  11. PKG_SITES:= http://thekelleys.org.uk/dnsmasq/
  12. PKG_FLAVOURS_DNSMASQ:= PXE
  13. PKGFD_PXE:= enable pxe network boot
  14. PKGFS_PXE:= pxelinux
  15. PKGFB_PXE:= syslinux
  16. include ${ADK_TOPDIR}/mk/package.mk
  17. $(eval $(call PKG_template,DNSMASQ,dnsmasq,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  18. CONFIG_STYLE:= manual
  19. dnsmasq-install:
  20. ${INSTALL_DIR} ${IDIR_DNSMASQ}/usr/sbin ${IDIR_DNSMASQ}/etc
  21. ${INSTALL_BIN} ${WRKINST}/usr/sbin/dnsmasq ${IDIR_DNSMASQ}/usr/sbin
  22. ${INSTALL_DATA} ./files/dnsmasq.conf ${IDIR_DNSMASQ}/etc/dnsmasq.conf
  23. include ${ADK_TOPDIR}/mk/pkg-bottom.mk