1
0

Makefile 804 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #
  2. # Copyright (C) 2014 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:=ipip
  9. PKG_VERSION:=1
  10. PKG_RELEASE:=3
  11. PKG_LICENSE:=GPL-2.0
  12. include $(INCLUDE_DIR)/package.mk
  13. define Package/ipip
  14. SECTION:=net
  15. CATEGORY:=Network
  16. MAINTAINER:=Hans Dedecker <dedeckeh@gmail.com>
  17. TITLE:=IP in IP Tunnel config support
  18. DEPENDS:= +kmod-ipip +resolveip
  19. PKGARCH:=all
  20. endef
  21. define Package/ipip/description
  22. IP in IP Tunnel config support in /etc/config/network.
  23. endef
  24. define Build/Compile
  25. endef
  26. define Build/Configure
  27. endef
  28. define Package/ipip/install
  29. $(INSTALL_DIR) $(1)/lib/netifd/proto
  30. $(INSTALL_BIN) ./files/ipip.sh $(1)/lib/netifd/proto/ipip.sh
  31. endef
  32. $(eval $(call BuildPackage,ipip))