17 lines
477 B
Plaintext
17 lines
477 B
Plaintext
# Description: Core utilities for Python packages.
|
|
# URL: https://pypi.python.org/pypi/packaging/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: python3-pip
|
|
|
|
name=python3-packaging
|
|
version=23.1
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/${name:8:1}/${name#*-}/${name#*-}-$version.tar.gz)
|
|
|
|
build() {
|
|
cd packaging-$version
|
|
|
|
PIP_CONFIG_FILE=/dev/null /usr/bin/pip3 install --isolated --root=$PKG \
|
|
--ignore-installed --no-deps .
|
|
}
|