mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-11-02 09:22:07 +01: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
27 lines
729 B
Plaintext
27 lines
729 B
Plaintext
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-pako
|
|
pkgver=0.3.1
|
|
pkgrel=4
|
|
pkgdesc="The universal package manager librar"
|
|
url="https://github.com/MycroftAI/pako"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="python3 py3-appdirs"
|
|
makedepends="py3-setuptools"
|
|
source="https://pypi.python.org/packages/source/p/pako/pako-$pkgver.tar.gz"
|
|
options="!check" # No tests
|
|
builddir="$srcdir/pako-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
265f970f7bed824b1d329da516189ad68346ff8e132cc3ce62cdc66908037d3c69e4ab09333be0d99c410365aaf147c5ab89f7c0e8e1776bffcef9c0de7807b3 pako-0.3.1.tar.gz
|
|
"
|