mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:57:13 +08:00
26 lines
717 B
Bash
26 lines
717 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=python-cssutils-beta
|
|
pkgver=0.9.7b4
|
|
pkgrel=2
|
|
pkgdesc="A CSS Cascading Style Sheets library for Python (Beta)"
|
|
arch=('any')
|
|
url="http://code.google.com/p/cssutils/"
|
|
license=('LGPL3')
|
|
conflicts=('python-cssutils-legacy' 'python-cssutils')
|
|
depends=('python2')
|
|
makedepends=('unzip' 'setuptools')
|
|
source=(http://cssutils.googlecode.com/files/cssutils-$pkgver.zip)
|
|
md5sums=('ecc1fee61fad1dd0e64e1b1de478b97b')
|
|
|
|
build() {
|
|
cd "$srcdir/cssutils-$pkgver"
|
|
python2 setup.py install --root="$pkgdir" || return 1
|
|
}
|