20 lines
563 B
Plaintext
20 lines
563 B
Plaintext
# Description: Bring colors to your terminal
|
|
# URL: https://github.com/sdispater/pastel
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-dephell python3-certifi python3-ruamel-yaml-clib
|
|
|
|
name=python3-pastel
|
|
version=0.2.1
|
|
release=1
|
|
source=(https://github.com/sdispater/pastel/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd pastel-$version
|
|
dephell deps convert --from pyproject.toml --to setup.py
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG \
|
|
--skip-build \
|
|
-O1
|
|
}
|