Makefile 871 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 $(TOPDIR)/rules.mk
  4. PKG_NAME:= 6tunnel
  5. PKG_VERSION:= 0.11rc1
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= b325fa9d238e32195fbb3fc3646b0d28
  8. PKG_DESCR:= IPv4/IPv6 tunnel proxy
  9. PKG_SECTION:= net
  10. PKG_DEPENDS:= kmod-ipv6
  11. PKG_SITES:= http://toxygen.net/6tunnel/
  12. WRKDIST= ${WRKDIR}/$(PKG_NAME)-0.11
  13. include $(TOPDIR)/mk/package.mk
  14. $(eval $(call PKG_template,6TUNNEL,6tunnel,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  15. CONFIGURE_STYLE= gnu
  16. CONFIGURE_ENV+= ac_cv_path_STRIP=$(STRIP) \
  17. ac_cv_func_vsnprintf=yes
  18. ALL_TARGET= default
  19. BUILD_STYLE= auto
  20. post-install:
  21. $(INSTALL_DIR) $(IDIR_6TUNNEL)/usr/sbin
  22. $(INSTALL_BIN) $(WRKBUILD)/6tunnel $(IDIR_6TUNNEL)/usr/sbin/
  23. include ${TOPDIR}/mk/pkg-bottom.mk