mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-10-22 04:41:09 +02:00
38 lines
816 B
Plaintext
38 lines
816 B
Plaintext
# Contributor: Francesco Colista <francesco.colista@gmail.com>
|
|
# Maintainer:
|
|
pkgname=py-cssutils
|
|
_pkgname=cssutils
|
|
pkgver=0.9.9
|
|
pkgrel=0
|
|
pkgdesc="A CSS Cascading Style Sheets library for Python"
|
|
url="http://cthedot.de/cssutils/"
|
|
arch="noarch"
|
|
license="LGPL3"
|
|
depends=""
|
|
depends_dev="python-dev py-setuptools"
|
|
makedepends="$depends_dev"
|
|
install=""
|
|
subpackages=""
|
|
source="http://pypi.python.org/packages/source/c/$_pkgname/$_pkgname-${pkgver}.zip"
|
|
_builddir="$srcdir"/$_pkgname-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python2 setup.py install --root="${pkgdir}/" --optimize=1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
}
|
|
|
|
md5sums="5f8ea824cc0e0518b574da20e895be08 cssutils-0.9.9.zip"
|