# $Id: PKGBUILD 34259 2010-12-05 10:19:28Z giovanni $ # Maintainer: Giovanni Scafora # Contributor: Michal Marek # Contributor: Andrea Scarpino # Contributor: Rick W. Chena # Contributor: Andrea Fagiani pkgname=python2-cssutils pkgver=0.9.7 pkgrel=1 pkgdesc="A CSS Cascading Style Sheets library for Python" arch=('any') url="http://code.google.com/p/cssutils/" license=('LGPL3') depends=('python2') makedepends=('unzip' 'setuptools') source=(http://cssutils.googlecode.com/files/cssutils-$pkgver.zip) md5sums=('69e93d7edb30365dd6712d62df0850ed') build() { cd "${srcdir}/cssutils-${pkgver}" python2 setup.py install --root="$pkgdir" || return 1 }