diff options
author | Michael Hanson <hansonorders@verizon.net> | 2010-12-09 23:52:56 (GMT) |
---|---|---|
committer | Michael Hanson <hansonorders@verizon.net> | 2010-12-09 23:52:56 (GMT) |
commit | 0efa1e0fa590fa3b051497dd68dadc4faa959a73 (patch) | |
tree | e814b5158327d1a081ad98e422042d3de2720007 /abs/core/python_modules/python-lxml | |
parent | 34667c475599d9ae4ab99eb436418351b9921e6f (diff) | |
download | linhes_pkgbuild-0efa1e0fa590fa3b051497dd68dadc4faa959a73.zip linhes_pkgbuild-0efa1e0fa590fa3b051497dd68dadc4faa959a73.tar.gz linhes_pkgbuild-0efa1e0fa590fa3b051497dd68dadc4faa959a73.tar.bz2 |
python-lxml: recompile
Diffstat (limited to 'abs/core/python_modules/python-lxml')
-rw-r--r-- | abs/core/python_modules/python-lxml/PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/abs/core/python_modules/python-lxml/PKGBUILD b/abs/core/python_modules/python-lxml/PKGBUILD new file mode 100644 index 0000000..606ec54 --- /dev/null +++ b/abs/core/python_modules/python-lxml/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> +# Contributor: William Rea <sillywilly@gmail.com> +# Contributor: Guillem Rieu <guillemr@gmx.net> + +pkgname=python-lxml +pkgver=2.2.6 +pkgrel=4 +pkgdesc="Python binding for the libxml2 and libxslt libraries" +arch=('i686' 'x86_64') +license=('BSD' 'GPL' 'custom') +url="http://codespeak.net/lxml" +depends=('python2' 'libxslt') +optdepends=("beautiful-soup: support for parsing not well formed HTML") +conflicts=('lxml') +replaces=('lxml') +source=(http://codespeak.net/lxml/lxml-$pkgver.tgz) +md5sums=('b1f700fb22d7ee9b977ee3eceb65b20c') + +build() { + /bin/true +} + +package() { + cd ${srcdir}/lxml-$pkgver + + python2 setup.py install --root=${pkgdir} || return 1 + + install -D -m644 LICENSES.txt ${pkgdir}/usr/share/licenses/$pkgname/LICENSE || return 1 + install -D -m644 doc/licenses/BSD.txt ${pkgdir}/usr/share/licenses/$pkgname/BSD.txt || return 1 + install -D -m644 doc/licenses/elementtree.txt ${pkgdir}/usr/share/licenses/$pkgname/elementtree.txt || return 1 +} |