Makefile 995 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:= l2tpns
  5. PKG_VERSION:= 2.1.21
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 385c58055723ebc6c38062acd2db9c2c
  8. PKG_DESCR:= A layer 2 tunneling protocol network server (LNS)
  9. PKG_SECTION:= net
  10. PKG_URL:= http://l2tpns.sourceforge.net/
  11. PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=l2tpns/}
  12. include ${TOPDIR}/mk/package.mk
  13. $(eval $(call PKG_template,L2TPNS,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  14. BUILD_FLAGS= auto
  15. INSTALL_STYLE= auto
  16. post-install:
  17. ${INSTALL_DIR} ${IDIR_L2TPNS}/etc/l2tpns
  18. ${CP} ${WRKINST}/etc/l2tpns/* ${IDIR_L2TPNS}/etc/l2tpns/
  19. ${INSTALL_DIR} ${IDIR_L2TPNS}/usr/lib/l2tpns
  20. ${CP} ${WRKINST}/usr/lib/l2tpns/* ${IDIR_L2TPNS}/usr/lib/l2tpns/
  21. ${INSTALL_DIR} ${IDIR_L2TPNS}/usr/sbin
  22. ${CP} ${WRKINST}/usr/sbin/* ${IDIR_L2TPNS}/usr/sbin/
  23. include ${TOPDIR}/mk/pkg-bottom.mk