mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
20 lines
589 B
Bash
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
|
|
}
|