mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 18:55:29 +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
782 B
Text
24 lines
782 B
Text
# Contributor: Duncan Bellamy <dunk@denkimushi.com>
|
|
# Maintainer: Duncan Bellamy <dunk@denkimushi.com>
|
|
pkgname=py3-transip
|
|
pkgver=2.1.2
|
|
pkgrel=3
|
|
pkgdesc="TransIP API Connector"
|
|
options="!check" # No testsuite in pypi tarball
|
|
url="https://github.com/benkonrath/transip-api"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="py3-cryptography py3-requests py3-suds-jurko"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/t/transip/transip-$pkgver.tar.gz"
|
|
builddir="$srcdir/transip-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="1556b3513a921390433a78aca8dd1bc3c9221ab75bf84f6775d6f842fa881c52c7ffc7f96cacfb413462f89c3f4cb40730613f2a177bfc41cb988e5edb59f87c transip-2.1.2.tar.gz"
|