Date: Sunday, January 31, 2010 @ 04:26:49 Author: allan Revision: 66451
rename pil (FS#17953) Added: python-imaging/ python-imaging/repos/ python-imaging/trunk/ python-imaging/trunk/PKGBUILD ----------+ PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) Added: python-imaging/trunk/PKGBUILD =================================================================== --- python-imaging/trunk/PKGBUILD (rev 0) +++ python-imaging/trunk/PKGBUILD 2010-01-31 09:26:49 UTC (rev 66451) @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer: Allan McRae <[email protected]> +# Contributor: simo <[email protected]> + +pkgname=python-imaging +pkgver=1.1.7 +pkgrel=1 +pkgdesc="PIL. Provides image processing capabilities for python" +arch=('i686' 'x86_64') +url="http://www.pythonware.com/products/pil/index.htm" +license=('custom:"pil"') +depends=('python' 'libjpeg' 'freetype2') +makedepends=('tk') +optdepends=('tk') +provides=("pil=$pkgver") +conflicts=('pil') +replaces=('pil') +source=(http://effbot.org/downloads/Imaging-$pkgver.tar.gz) +md5sums=('fc14a54e1ce02a0225be8854bfba478e') + +build() { + cd $srcdir/Imaging-$pkgver + python setup.py build_ext + python setup.py install --root=$pkgdir + install -dm755 $pkgdir/usr/include/python2.6/ + install -m644 -t $pkgdir/usr/include/python2.6/ libImaging/*.h + + # Install license + install -Dm644 $srcdir/Imaging-$pkgver/README \ + $pkgdir/usr/share/licenses/$pkgname/README +} + Property changes on: python-imaging/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id
