Makefile 846 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:= 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_SITES:= http://toxygen.net/6tunnel/
  11. WRKDIST= ${WRKDIR}/$(PKG_NAME)-0.11
  12. include $(TOPDIR)/mk/package.mk
  13. $(eval $(call PKG_template,6TUNNEL,6tunnel,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  14. CONFIGURE_STYLE= gnu
  15. CONFIGURE_ENV+= ac_cv_path_STRIP=$(STRIP) \
  16. ac_cv_func_vsnprintf=yes
  17. ALL_TARGET= default
  18. BUILD_STYLE= auto
  19. post-install:
  20. $(INSTALL_DIR) $(IDIR_6TUNNEL)/usr/sbin
  21. $(INSTALL_BIN) $(WRKBUILD)/6tunnel $(IDIR_6TUNNEL)/usr/sbin/
  22. include ${TOPDIR}/mk/pkg-bottom.mk