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.

51 lines
1.2 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.10.0
  11. PKG_RELEASE:=1
  12. PKG_LICENSE:=MIT
  13. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  14. PKG_SOURCE_URL:=http://c-ares.haxx.se/download
  15. PKG_MD5SUM:=1196067641411a75d3cbebe074fd36d8
  16. PKG_FIXUP:=autoreconf
  17. PKG_INSTALL:=1
  18. include $(INCLUDE_DIR)/package.mk
  19. define Package/libcares
  20. SECTION:=libs
  21. CATEGORY:=Libraries
  22. TITLE:=Library for asyncronous DNS Requests (including name resolves)
  23. URL:=http://c-ares.haxx.se/
  24. MAINTAINER:=Karl Palsson <karlp@remake.is>
  25. endef
  26. define Package/libcares/description
  27. c-ares is a C library for asynchronous DNS requests (including name resolves)
  28. C89 compatibility, MIT licensed, builds for and runs on POSIX, Windows,
  29. Netware, Android and many more operating systems.
  30. endef
  31. define Package/libcares/install
  32. $(INSTALL_DIR) $(1)/usr/lib
  33. $(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so.* $(1)/usr/lib/
  34. endef
  35. define Build/InstallDev
  36. $(INSTALL_DIR) $(1)
  37. $(CP) $(PKG_INSTALL_DIR)/* $(1)/
  38. endef
  39. $(eval $(call BuildPackage,libcares))