blob: 5d4effa47c1800f72b3b088a0680de4b6dd9cf6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Based on python-lxml.
# $Id: PKGBUILD 146500 2012-01-12 05:14:02Z eric $
# 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=python3-lxml
pkgver=2.3.3
pkgrel=1
pkgdesc="Python 3 binding for the libxml2 and libxslt libraries"
arch=('i686' 'x86_64' 'mips64el')
license=('BSD' 'custom')
url="http://lxml.de/"
depends=('python' 'libxslt')
conflicts=('lxml')
source=(http://pypi.python.org/packages/source/l/lxml/lxml-${pkgver}.tar.gz{,.asc})
md5sums=('a7825793c69d004f388ec6600bad7a6f'
'5c4b1a05f6e46a4dd7ebed8b5ad9e32e')
check() {
cd "${srcdir}"/lxml-$pkgver
make test
}
package() {
cd "${srcdir}"/lxml-$pkgver
python setup.py install --root="${pkgdir}" --optimize=1
install -Dm644 LICENSES.txt \
"${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
install -Dm644 doc/licenses/BSD.txt \
"${pkgdir}"/usr/share/licenses/$pkgname/BSD.txt
install -Dm644 doc/licenses/elementtree.txt \
"${pkgdir}"/usr/share/licenses/$pkgname/elementtree.txt
}
|