17 lines
625 B
Plaintext
17 lines
625 B
Plaintext
# Description: Compresses linked and inline JavaScript or CSS into single cached files.
|
|
# URL: https://django-compressor.readthedocs.io/en/latest/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: python3-django-appconf python3-rcssmin python3-rjsmin
|
|
|
|
name=python3-django-compressor
|
|
version=4.5.1
|
|
release=1
|
|
source=(https://pypi.org/packages/source/d/django_compressor/django_compressor-$version.tar.gz)
|
|
|
|
build() {
|
|
cd django_compressor-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|