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) 2009-2010 OpenWrt.org
  3. # Copyright (C) 2009 Jakob Pfeiffer
  4. #
  5. # This is free software, licensed under the GNU General Public License v2.
  6. # See /LICENSE for more information.
  7. #
  8. include $(TOPDIR)/rules.mk
  9. PKG_NAME:=c-ares
  10. PKG_VERSION:=1.17.1
  11. PKG_RELEASE:=1
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  13. PKG_SOURCE_URL:=https://c-ares.haxx.se/download
  14. PKG_HASH:=d73dd0f6de824afd407ce10750ea081af47eba52b8a6cb307d220131ad93fc40
  15. PKG_LICENSE:=MIT
  16. PKG_LICENSE_FILES:=LICENSE.md
  17. PKG_CPE_ID:=cpe:/a:c-ares_project:c-ares
  18. CMAKE_INSTALL:=1
  19. include $(INCLUDE_DIR)/package.mk
  20. include $(INCLUDE_DIR)/cmake.mk
  21. define Package/libcares
  22. SECTION:=libs
  23. CATEGORY:=Libraries
  24. TITLE:=Library for asyncronous DNS Requests (including name resolves)
  25. URL:=http://c-ares.haxx.se/
  26. MAINTAINER:=Karl Palsson <karlp@etactica.com>
  27. endef
  28. define Package/libcares/description
  29. c-ares is a C library for asynchronous DNS requests (including name resolves)
  30. C89 compatibility, MIT licensed, builds for and runs on POSIX, Windows,
  31. Netware, Android and many more operating systems.
  32. endef
  33. CMAKE_OPTIONS += \
  34. -DCARES_STATIC=OFF \
  35. -DCARES_SHARED=ON \
  36. -DCARES_STATIC_PIC=ON \
  37. -DCARES_BUILD_TESTS=OFF \
  38. -DCARES_BUILD_TOOLS=OFF
  39. define Package/libcares/install
  40. $(INSTALL_DIR) $(1)/usr/lib
  41. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcares.so.* $(1)/usr/lib/
  42. endef
  43. $(eval $(call BuildPackage,libcares))