mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
this marginally increases install speed by not checking if it needs a rebuild. also remove --prefix=/usr as it defaults to /usr already. might break a build or two, will fix later
24 lines
729 B
Text
24 lines
729 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-petact
|
|
pkgver=0.1.2
|
|
pkgrel=3
|
|
pkgdesc="A package extraction tool for Python"
|
|
url="https://github.com/matthewscholefield/petact"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
source="https://pypi.python.org/packages/source/p/petact/petact-$pkgver.tar.gz"
|
|
options="!check" # No tests
|
|
builddir="$srcdir/petact-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="3eee4f0b1d01fda72af1be0144ef25370d1c0ee1a8b4c244598ed3e029da1b31ce1536d25b94c802579f43001db2c30dab036b355b05c297d9d01291657d3608 petact-0.1.2.tar.gz"
|