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.

69 lines
1.4 KiB

  1. #
  2. # Copyright (C) 2009-2015 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:=libgee
  9. PKG_VERSION:=0.18.0
  10. PKG_RELEASE:=1
  11. PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
  12. PKG_LICENSE:=LGPL-2.1
  13. PKG_LICENSE_FILES:=COPYING
  14. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  15. PKG_SOURCE_URL:=https://download.gnome.org/sources/libgee/0.18/
  16. PKG_MD5SUM:=29ea6125e653d7e60b49a9a9544abc96
  17. PKG_FIXUP:=autoreconf
  18. PKG_INSTALL:=1
  19. include $(INCLUDE_DIR)/package.mk
  20. include $(INCLUDE_DIR)/nls.mk
  21. TARGET_LDFLAGS+= \
  22. -Wl,-rpath-link=$(STAGING_DIR)/usr/lib
  23. define Package/libgee
  24. SECTION:=libs
  25. CATEGORY:=Libraries
  26. DEPENDS:=+glib2
  27. TITLE:=libgee
  28. URL:=https://wiki.gnome.org/Libgee
  29. endef
  30. define Package/libgee/decription
  31. Libgee is an utility library providing GObject-based interfaces and classes
  32. endef
  33. CONFIGURE_ARGS += \
  34. --disable-doc
  35. define Build/InstallDev
  36. $(INSTALL_DIR) $(1)/usr/include/
  37. $(CP) \
  38. $(PKG_INSTALL_DIR)/usr/include/gee-0.8/ \
  39. $(1)/usr/include/
  40. $(INSTALL_DIR) $(1)/usr/lib/
  41. $(CP) \
  42. $(PKG_INSTALL_DIR)/usr/lib/*.so* \
  43. $(1)/usr/lib/
  44. $(INSTALL_DIR) $(1)/usr/lib/pkgconfig/
  45. $(INSTALL_DATA) \
  46. $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/*.pc \
  47. $(1)/usr/lib/pkgconfig/
  48. endef
  49. define Package/libgee/install
  50. $(INSTALL_DIR) $(1)/usr/lib/
  51. $(CP) \
  52. $(PKG_INSTALL_DIR)/usr/lib/*.so* \
  53. $(1)/usr/lib/
  54. endef
  55. $(eval $(call BuildPackage,libgee))