Makefile 894 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #
  2. # Copyright (C) 2010-2015 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:=6in4
  9. PKG_VERSION:=24
  10. PKG_RELEASE:=1
  11. PKG_LICENSE:=GPL-2.0
  12. include $(INCLUDE_DIR)/package.mk
  13. define Package/6in4
  14. SECTION:=net
  15. CATEGORY:=Network
  16. DEPENDS:=@IPV6 +kmod-sit +uclient-fetch
  17. TITLE:=IPv6-in-IPv4 configuration support
  18. MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
  19. PKGARCH:=all
  20. endef
  21. define Package/6in4/description
  22. Provides support for 6in4 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/6in4/install
  31. $(INSTALL_DIR) $(1)/lib/netifd/proto
  32. $(INSTALL_BIN) ./files/6in4.sh $(1)/lib/netifd/proto/6in4.sh
  33. endef
  34. $(eval $(call BuildPackage,6in4))