summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9eb5e9bff5155e2f534146b50f2fbe96725a366c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Maintainer: Phil Schaf <flying-sheep@web.de>

pkgname=auditwheel
pkgver=2.0.0
pkgrel=2
pkgdesc='Cross-distribution Linux wheels'
arch=(any)
url="https://github.com/pypa/auditwheel"
license=(MIT)
depends=(python-wheel python-pyelftools)
_pyarch=py3
_wheel="$pkgname-$pkgver-$_pyarch-none-any.whl"
source=("https://files.pythonhosted.org/packages/$_pyarch/${pkgname::1}/$pkgname/$_wheel")
sha256sums=('63fe2fdda4d6c5f7b04e3982896428e3c243fdf8b8543aaa567bf0e1ce26b44a')
noextract=("$_wheel")

package() {
	local site="$pkgdir/usr/lib/$(readlink /bin/python3)/site-packages"
	mkdir -p "$site"
	unzip "$_wheel" -d "$site"
	
	cat >auditwheel.py <<-EOF
	#!/usr/bin/env python3
	from auditwheel.main import main
	main()
	EOF
	install -Dm755 auditwheel.py "$pkgdir/usr/bin/auditwheel"
}