X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=libs%2Flibexif%2FMakefile;h=43a09fedd8e5138f3b063d94df95a9cfa2a9a838;hp=edab42dd3bdd51ec63de1b6c8efbc0cf66cb722b;hb=6776d68632a0a2ccd6da27c307072ec52f3f5d4f;hpb=0fcfddc2a535f235f0e8250a923ceb6565edfb27 diff --git a/libs/libexif/Makefile b/libs/libexif/Makefile index edab42dd3b..43a09fedd8 100644 --- a/libs/libexif/Makefile +++ b/libs/libexif/Makefile @@ -1,20 +1,22 @@ -# -# Copyright (C) 2006 OpenWrt.org +# +# Copyright (C) 2006-2010 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # -# $Id$ include $(TOPDIR)/rules.mk PKG_NAME:=libexif -PKG_VERSION:=0.6.13 +PKG_VERSION:=0.6.19 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=@SF/libexif -PKG_MD5SUM:=1b1e2b495c5aa20c08725f30545a110b +PKG_MD5SUM:=56144a030a4c875c600b1ccf713f69f7 + +PKG_FIXUP:=libtool +PKG_INSTALL:=1 include $(INCLUDE_DIR)/package.mk @@ -25,29 +27,28 @@ define Package/libexif URL:=http://libexif.sourceforge.net/ endef -define Build/Configure - $(call Build/Configure/Default, \ - --enable-shared \ - --enable-static \ - --disable-rpath \ - --without-libiconv-prefix \ - --without-libintl-prefix \ - ) +define Package/libexif/description + libexif is a library for parsing, editing, and saving EXIF data. It is + intended to replace lots of redundant implementations in command-line + utilities and programs with GUIs. endef -TARGET_CFLAGS += $(FPIC) +CONFIGURE_ARGS+= \ + --enable-shared \ + --enable-static \ + --disable-rpath \ + --without-libiconv-prefix \ + --without-libintl-prefix \ -define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) \ - DESTDIR="$(PKG_INSTALL_DIR)" \ - all install -endef +TARGET_CFLAGS += $(FPIC) define Build/InstallDev - mkdir -p $(1)/usr/include + $(INSTALL_DIR) $(1)/usr/include $(CP) $(PKG_INSTALL_DIR)/usr/include/libexif $(1)/usr/include/ - mkdir -p $(1)/usr/lib + $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libexif*.{a,so*} $(1)/usr/lib/ + $(INSTALL_DIR) $(1)/usr/lib/pkgconfig + $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libexif.pc $(1)/usr/lib/pkgconfig/ endef define Package/libexif/install