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.

48 lines
1.1 KiB

  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:=dtndht
  9. PKG_VERSION:=0.2.3
  10. PKG_RELEASE:=2
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=http://www.ibr.cs.tu-bs.de/projects/ibr-dtn/releases
  13. PKG_HASH:=29749f6c4e1b79e6973dc7436bcc6e0aee86ce27e1786f32a60feab652af8898
  14. PKG_MAINTAINER:=Johannes Morgenroth <morgenroth@ibr.cs.tu-bs.de>
  15. PKG_LICENSE:=Apache-2.0
  16. PKG_INSTALL:=1
  17. PKG_FIXUP:=libtool
  18. include $(INCLUDE_DIR)/package.mk
  19. define Package/dtndht
  20. SECTION:=libs
  21. CATEGORY:=Libraries
  22. DEPENDS:=+libopenssl
  23. TITLE:=Library for DHT lookups for DTNs
  24. endef
  25. define Package/dtndht/description
  26. A library with DHT functions for DTN name lookups.
  27. endef
  28. TARGET_CFLAGS += -std=gnu89
  29. define Build/InstallDev
  30. $(INSTALL_DIR) $(1)
  31. $(CP) $(PKG_INSTALL_DIR)/* $(1)/
  32. endef
  33. define Package/dtndht/install
  34. $(INSTALL_DIR) $(1)/usr/lib
  35. $(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so.* $(1)/usr/lib/
  36. endef
  37. $(eval $(call BuildPackage,dtndht))