mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 06:57:13 +08:00
35 lines
1.1 KiB
Bash
35 lines
1.1 KiB
Bash
# $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=2
|
|
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
|
|
}
|