Makefile 976 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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:=ipv6-support
  9. PKG_VERSION:=2013-01-23
  10. PKG_RELEASE:=1
  11. include $(INCLUDE_DIR)/package.mk
  12. define Package/ipv6-support
  13. SECTION:=ipv6
  14. CATEGORY:=IPv6
  15. DEPENDS:=+kmod-ipv6 +6relayd +odhcp6c +ip6tables
  16. TITLE:=Basic IPv6-support for Customer Edge Routers
  17. MAINTAINER:=Steven Barth <[email protected]>
  18. PKGARCH:=all
  19. endef
  20. define Package/ipv6-support/description
  21. This package provides basic IPv6 support including Router Discovery,
  22. DHCPv6 (client & server), prefix delegation and distribution.
  23. endef
  24. define Build/Compile
  25. endef
  26. define Build/Configure
  27. endef
  28. define Package/ipv6-support/install
  29. $(INSTALL_DIR) $(1)/etc/uci-defaults
  30. $(INSTALL_BIN) ./files/network-enable-ipv6.defaults $(1)/etc/uci-defaults/10_network-enable-ipv6
  31. endef
  32. $(eval $(call BuildPackage,ipv6-support))