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.

73 lines
1.6 KiB

  1. #
  2. # Copyright (C) 2007-2016 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:=loudmouth
  9. PKG_VERSION:=1.5.3
  10. PKG_RELEASE:=1
  11. PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
  12. PKG_LICENSE:=LGPLv2.1
  13. PKG_LICENSE_FILES:=COPYING
  14. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  15. PKG_SOURCE_PROTO:=git
  16. PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
  17. PKG_SOURCE_URL:=https://github.com/mcabber/loudmouth.git
  18. PKG_SOURCE_VERSION:=$(PKG_VERSION)
  19. PKG_MD5SUM:=7616cf124a8d72d007e7475b5aeb20ad
  20. PKG_FIXUP:=autoreconf
  21. PKG_INSTALL:=1
  22. include $(INCLUDE_DIR)/package.mk
  23. define Package/loudmouth
  24. SECTION:=libs
  25. CATEGORY:=Libraries
  26. DEPENDS:=+glib2 +libopenssl
  27. TITLE:=loudmouth
  28. URL:=https://github.com/mcabber/loudmouth
  29. endef
  30. define Package/loudmouth/description
  31. Lightweight and easy-to-use C library for programming with the Jabber protocol
  32. endef
  33. CONFIGURE_ARGS += \
  34. --with-ssl=openssl
  35. define Build/Configure
  36. ( cd $(PKG_BUILD_DIR); ./autogen.sh )
  37. $(call Build/Configure/Default)
  38. endef
  39. define Build/InstallDev
  40. $(INSTALL_DIR) $(1)/usr/include/
  41. $(CP) \
  42. $(PKG_INSTALL_DIR)/usr/include/loudmouth-1.0/ \
  43. $(1)/usr/include/
  44. $(INSTALL_DIR) $(1)/usr/lib/
  45. $(CP) \
  46. $(PKG_INSTALL_DIR)/usr/lib/*.so* \
  47. $(1)/usr/lib/
  48. $(INSTALL_DIR) $(1)/usr/lib/pkgconfig/
  49. $(INSTALL_DATA) \
  50. $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/*.pc \
  51. $(1)/usr/lib/pkgconfig/
  52. endef
  53. define Package/loudmouth/install
  54. $(INSTALL_DIR) $(1)/usr/lib
  55. $(CP) \
  56. $(PKG_INSTALL_DIR)/usr/lib/*.so* \
  57. $(1)/usr/lib/
  58. endef
  59. $(eval $(call BuildPackage,loudmouth))