diff --git a/python3-wheel/alr.sh b/python3-wheel/alr.sh index f4fd6ca..fbfb6a2 100644 --- a/python3-wheel/alr.sh +++ b/python3-wheel/alr.sh @@ -1,6 +1,6 @@ name='python3-wheel' version='0.45.1' -release='4' +release='5' desc='This is a command line tool for manipulating Python wheel files, as defined in PEP 427' homepage='https://github.com/pypa/wheel' maintainer='Евгений Храмов ' @@ -23,11 +23,17 @@ sources=("https://files.pythonhosted.org/packages/source/w/wheel/wheel-${version checksums=('blake2b-256:8a982d9906746cdc6a6ef809ae6338005b3f21bb568bea3165cfc6a243fdc25c') build() { - cd "$srcdir/wheel-${version}" - python3 -m build + cd "$srcdir/wheel-${version}" + python3 -m build } package() { - cd "$srcdir/wheel-${version}" - pip install --root="${pkgdir}/" . --no-deps --disable-pip-version-check + cd "$srcdir/wheel-${version}" + pip install --root="${pkgdir}/" . --no-deps --ignore-installed --disable-pip-version-check } + +files() { + echo ./usr/local/bin/wheel + printf '"%s" ' ./usr/local/lib/python3.*/site-packages/wheel/**/* + printf '"%s" ' ./usr/local/lib/python3.*/site-packages/wheel-${version}.dist-info/* +} \ No newline at end of file