mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
21 lines
589 B
Bash
21 lines
589 B
Bash
|
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
|
||
|
# Maintainer: Andrea Scarpino <bash.lnx@gmail.com>
|
||
|
|
||
|
pkgname=python-cssutils-legacy
|
||
|
pkgver=0.9.5
|
||
|
pkgrel=3
|
||
|
pkgdesc="A CSS Cascading Style Sheets library for Python"
|
||
|
arch=('any')
|
||
|
url="http://code.google.com/p/cssutils/"
|
||
|
license=('LGPL3')
|
||
|
conflicts=('python-cssutils')
|
||
|
depends=('python')
|
||
|
makedepends=('unzip' 'setuptools')
|
||
|
source=(http://cssutils.googlecode.com/files/cssutils-$pkgver.zip)
|
||
|
md5sums=('1e74451a964a80a659c0a18d6ea12f82')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/cssutils-$pkgver"
|
||
|
python setup.py install --root="$pkgdir" || return 1
|
||
|
}
|