PKGBUILDs/community/python-cssutils-legacy/PKGBUILD
2009-10-09 21:15:33 -05:00

20 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
}