Makefile 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. #
  2. # Copyright (C) 2006-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:=libexif
  9. PKG_VERSION:=0.6.21
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
  12. PKG_SOURCE_URL:=@SF/libexif
  13. PKG_MD5SUM:=27339b89850f28c8f1c237f233e05b27
  14. PKG_LICENSE:=LGPL-2.1
  15. PKG_LICENSE_FILES:=COPYING
  16. PKG_FIXUP:=autoreconf
  17. PKG_INSTALL:=1
  18. include $(INCLUDE_DIR)/package.mk
  19. define Package/libexif
  20. SECTION:=libs
  21. CATEGORY:=Libraries
  22. TITLE:=library for jpeg files with exif tags
  23. URL:=http://libexif.sourceforge.net/
  24. MAINTAINER:=W. Michael Petullo <mike@flyn.org>
  25. endef
  26. define Package/libexif/description
  27. libexif is a library for parsing, editing, and saving EXIF data. It is
  28. intended to replace lots of redundant implementations in command-line
  29. utilities and programs with GUIs.
  30. endef
  31. CONFIGURE_ARGS+= \
  32. --enable-shared \
  33. --enable-static \
  34. --disable-rpath \
  35. --disable-nls \
  36. --without-libiconv-prefix \
  37. --without-libintl-prefix \
  38. TARGET_CFLAGS += $(FPIC)
  39. define Build/InstallDev
  40. $(INSTALL_DIR) $(1)/usr/include
  41. $(CP) $(PKG_INSTALL_DIR)/usr/include/libexif $(1)/usr/include/
  42. $(INSTALL_DIR) $(1)/usr/lib
  43. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libexif*.{a,so*} $(1)/usr/lib/
  44. $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
  45. $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libexif.pc $(1)/usr/lib/pkgconfig/
  46. endef
  47. define Package/libexif/install
  48. $(INSTALL_DIR) $(1)/usr/lib
  49. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libexif*.so.* $(1)/usr/lib/
  50. endef
  51. $(eval $(call BuildPackage,libexif))