18 lines
558 B
Plaintext
18 lines
558 B
Plaintext
# Description: python module for making quick charts
|
|
# URL: https://github.com/wireservice/leather
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: python3-build
|
|
|
|
name=python3-leather
|
|
version=0.4.0
|
|
release=1
|
|
source=(https://github.com/wireservice/${name##python3-}/archive/refs/tags/$version.tar.gz)
|
|
renames=($name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd ${name##python3-}-$version
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|