From: Nicolas Thill Date: Mon, 14 Nov 2011 23:30:57 +0000 (+0000) Subject: packages: add python-imaging-library (PIL) X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=002fce510a9892264dd4d18d259ec588bfc3caab packages: add python-imaging-library (PIL) SVN-Revision: 29140 --- diff --git a/lang/python-imaging-library/Makefile b/lang/python-imaging-library/Makefile new file mode 100644 index 0000000000..12a3ed5a94 --- /dev/null +++ b/lang/python-imaging-library/Makefile @@ -0,0 +1,59 @@ +# +# Copyright (C) 2011 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:=python-imaging-library +PKG_VERSION:=1.1.7 +PKG_RELEASE:=1 + +PKG_SOURCE:=Imaging-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://effbot.org/downloads +PKG_MD5SUM:=fc14a54e1ce02a0225be8854bfba478e + +PKG_BUILD_DIR:=$(BUILD_DIR)/Imaging-$(PKG_VERSION) +PKG_BUILD_DEPENDS:=python + +include $(INCLUDE_DIR)/package.mk +$(call include_mk, python-package.mk) + +define Package/python-imaging-library + SECTION:=language-python + CATEGORY:=Languages + SUBMENU:=Python + TITLE:=Python Imaging Library (PIL) + URL:=http://www.pythonware.com/products/pil/ + DEPENDS:=+python +libfreetype +libjpeg +zlib +endef + +define Package/python-imaging-library/description + The Python Imaging Library adds image processing capabilities to your + Python interpreter. + . + This library provides extensive file format support, an efficient + internal representation, and fairly powerful image processing + capabilities. + . + The core image library is designed for fast access to data stored in a + few basic pixel formats. It should provide a solid foundation for a + general image processing tool. +endef + +define Build/Compile + $(call Build/Compile/PyMod,., \ + install --prefix="/usr" --root="$(PKG_INSTALL_DIR)", \ + ) +endef + +define Package/python-imaging-library/install + $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR) + $(CP) \ + $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \ + $(1)$(PYTHON_PKG_DIR)/ +endef + +$(eval $(call BuildPackage,python-imaging-library))