mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 11:45:18 +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
28 lines
949 B
Text
28 lines
949 B
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-helper
|
|
_pkgname=helper
|
|
pkgver=2.5.0
|
|
pkgrel=2
|
|
pkgdesc="A Python library for quickly writing configurable applications and daemons"
|
|
url="https://helper.readthedocs.org/"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
replaces="py-helper" # for backwards compatibility
|
|
provides="py-helper=$pkgver-r$pkgrel" # for backwards compatibility
|
|
depends="python3 py3-yaml"
|
|
makedepends="python3-dev py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
5166f25d40e860af598bc54c81033546850a22245ea0d7a24c2b12f76da922008ac6f096fafdc714099dc2fe70ef345529235b3b8d225a6b7f74fa6f168b32a3 helper-2.5.0.tar.gz
|
|
"
|