Merge pull request #164 from MikePetullo/vips
Copy vips package from old repository and update (this is necessary for a forthcoming dmapd package addition)
This commit is contained in:
commit
72ebc0ded7
2 changed files with 91309 additions and 0 deletions
81
libs/vips/Makefile
Normal file
81
libs/vips/Makefile
Normal file
|
@ -0,0 +1,81 @@
|
||||||
|
#
|
||||||
|
# Copyright (C) 2010-2012 OpenWrt.org
|
||||||
|
#
|
||||||
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
|
# See /LICENSE for more information.
|
||||||
|
#
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=vips
|
||||||
|
PKG_VERSION:=7.38.5
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
|
PKG_SOURCE_URL:=http://www.vips.ecs.soton.ac.uk/supported/7.38/
|
||||||
|
PKG_MD5SUM:=768d1c0f50c5b2794bcab68383af33ee
|
||||||
|
PKG_FIXUP:=autoreconf
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
include $(INCLUDE_DIR)/nls.mk
|
||||||
|
|
||||||
|
PKG_INSTALL=1
|
||||||
|
|
||||||
|
define Package/vips
|
||||||
|
$(call Package/vips/Default)
|
||||||
|
SECTION:=multimedia
|
||||||
|
CATEGORY:=Multimedia
|
||||||
|
TITLE:=An image manipulation library
|
||||||
|
URL:=http://www.vips.ecs.soton.ac.uk/
|
||||||
|
MAINTAINER:=W. Michael Petullo <mike@flyn.org>
|
||||||
|
DEPENDS:=+glib2 +libexif +libjpeg +libpng +libxml2 $(INTL_DEPENDS)
|
||||||
|
endef
|
||||||
|
|
||||||
|
TARGET_LDFLAGS+= \
|
||||||
|
-Wl,-rpath-link=$(STAGING_DIR)/usr/lib
|
||||||
|
|
||||||
|
CONFIGURE_ARGS += \
|
||||||
|
--disable-cxx \
|
||||||
|
--disable-threads \
|
||||||
|
--without-cfitsio \
|
||||||
|
--without-fftw \
|
||||||
|
--without-lcms \
|
||||||
|
--without-magick \
|
||||||
|
--without-matio \
|
||||||
|
--without-OpenEXR \
|
||||||
|
--without-orc \
|
||||||
|
--without-pangoft2 \
|
||||||
|
--without-python \
|
||||||
|
--without-tiff \
|
||||||
|
--without-v4l \
|
||||||
|
--without-x \
|
||||||
|
--without-zip \
|
||||||
|
--with-jpeg \
|
||||||
|
--with-libexif \
|
||||||
|
--with-png \
|
||||||
|
|
||||||
|
define Build/InstallDev
|
||||||
|
$(INSTALL_DIR) $(1)/usr/include/vips
|
||||||
|
$(CP) \
|
||||||
|
$(PKG_INSTALL_DIR)/usr/include/* \
|
||||||
|
$(1)/usr/include/
|
||||||
|
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib/
|
||||||
|
$(CP) \
|
||||||
|
$(PKG_INSTALL_DIR)/usr/lib/*.so* \
|
||||||
|
$(1)/usr/lib/
|
||||||
|
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig/
|
||||||
|
$(INSTALL_DATA) \
|
||||||
|
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
|
||||||
|
$(1)/usr/lib/pkgconfig/
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/vips/install
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib/
|
||||||
|
$(CP) \
|
||||||
|
$(PKG_INSTALL_DIR)/usr/lib/*.so* \
|
||||||
|
$(1)/usr/lib/
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call BuildPackage,vips))
|
91228
libs/vips/patches/001-no_cpp.patch
Normal file
91228
libs/vips/patches/001-no_cpp.patch
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue