diff --git a/pkg.info b/pkg.info index 4c29225..55f0487 100644 --- a/pkg.info +++ b/pkg.info @@ -1,9 +1,9 @@ name: python-setuptools description: Easily download, build, install, upgrade, and uninstall Python packages version: 69.1.0 -revision: 3 +revision: 4 url: https://pypi.org/project/setuptools/ license: MIT architecture: any -depends: ["python3","python-wheel"] +depends: ["python3"] type: source diff --git a/source.sh b/source.sh index 2318134..746ec64 100644 --- a/source.sh +++ b/source.sh @@ -15,13 +15,14 @@ prepare() { # The build function is executed in the source directory # This function is used to compile the source code build() { - pip3 wheel -w dist --no-cache-dir --no-build-isolation --no-deps $PWD + python3 setup.py build } # The package function is executed in the source directory # This function is used to move the compiled files into the output directory package() { - pip3 install --root="$BPM_OUTPUT" --ignore-installed --no-index --find-links dist setuptools + python3 setup.py install --root="$BPM_OUTPUT" --prefix=/usr + # Install package license install -Dm644 LICENSE "$BPM_OUTPUT"/usr/share/licenses/python-setuptools/LICENSE }