Makefile 885 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #
  2. # Copyright (C) 2010-2012 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=6to4
  9. PKG_VERSION:=12
  10. PKG_RELEASE:=2
  11. PKG_LICENSE:=GPL-2.0
  12. include $(INCLUDE_DIR)/package.mk
  13. define Package/6to4
  14. SECTION:=net
  15. CATEGORY:=Network
  16. DEPENDS:=@IPV6 +kmod-sit
  17. TITLE:=IPv6-to-IPv4 configuration support
  18. MAINTAINER:=Jo-Philipp Wich <xm@subsignal.org>
  19. PKGARCH:=all
  20. endef
  21. define Package/6to4/description
  22. Provides support for 6to4 tunnels in /etc/config/network.
  23. Refer to http://wiki.openwrt.org/doc/uci/network for
  24. configuration details.
  25. endef
  26. define Build/Compile
  27. endef
  28. define Build/Configure
  29. endef
  30. define Package/6to4/install
  31. $(INSTALL_DIR) $(1)/lib/netifd/proto
  32. $(INSTALL_BIN) ./files/6to4.sh $(1)/lib/netifd/proto/6to4.sh
  33. endef
  34. $(eval $(call BuildPackage,6to4))