You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.4 KiB

  1. #
  2. # Copyright (C) 2012-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:=lispmob
  9. PKG_REV:=180aa39d338a00bb532e421de7f8513492cf2e8b
  10. PKG_VERSION:=0.4
  11. PKG_RELEASE:=1
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
  13. PKG_SOURCE_URL:=git://github.com/LISPmob/lispmob.git
  14. PKG_SOURCE_PROTO:=git
  15. PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
  16. PKG_SOURCE_VERSION:=$(PKG_REV)
  17. PKG_LICENSE:=GPLv2
  18. PKG_LICENSE_FILES:=LICENSE
  19. include $(INCLUDE_DIR)/package.mk
  20. define Package/lispd/default
  21. MAINTAINER:=Vasileios Lakafosis <lakafv@gmail.com>
  22. URL:=http://lisp.cisco.com/
  23. endef
  24. define Package/lispd
  25. SECTION:=net
  26. CATEGORY:=Network
  27. TITLE:=Locator/ID separation protocol (using TUN)
  28. URL:=https://github.com/LISPmob
  29. DEPENDS:= +librt +libopenssl +confuse +kmod-tun +uci +kmod-ipv6
  30. $(call Package/lispd/default)
  31. endef
  32. define Package/lispd/description
  33. This packet provides support for the Locator-ID Seperation Protocol.
  34. endef
  35. MAKE_FLAGS += \
  36. platform=openwrt
  37. define Package/lispd/install
  38. $(INSTALL_DIR) $(1)/usr/sbin
  39. $(INSTALL_BIN) $(PKG_BUILD_DIR)/lispd/lispd $(1)/usr/sbin/
  40. $(INSTALL_DIR) $(1)/etc/config
  41. $(INSTALL_CONF) $(PKG_BUILD_DIR)/openWRT/lispd.uci.example $(1)/etc/config/lispd
  42. $(INSTALL_DIR) $(1)/etc/init.d
  43. $(INSTALL_BIN) $(PKG_BUILD_DIR)/openWRT/openwrt.init.script $(1)/etc/init.d/lisp
  44. endef
  45. $(eval $(call BuildPackage,lispd))