blob: b8db18edb2bc5fe5bee56c9ef7197b97592257b9 (
plain)
1 # Description: A library for working with color names and color value formats defined by the HTML and CSS specifications for use in documents on the Web
2 # URL: https://github.com/ubernostrum/webcolors
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-setuptools
5
6 name=python3-webcolors
7 version=1.11.1
8 release=1
9 source=(https://pypi.io/packages/source/w/webcolors/webcolors-$version.tar.gz)
10
11 build() {
12 cd webcolors-$version
13 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install --prefix=/usr \
15 --root=$PKG \
16 --skip-build
17 }
|