mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-04 07:21:40 +01:00
25 lines
765 B
Plaintext
25 lines
765 B
Plaintext
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Maintainer: Leo <thinkabit.ukim@gmail.com>
|
|
pkgname=py3-invoke
|
|
_pkgname=invoke
|
|
pkgver=1.3.0
|
|
pkgrel=1
|
|
pkgdesc="Pythonic task execution"
|
|
options="!check" # Can't find invoke.vendor.six
|
|
url="http://docs.pyinvoke.org/en/1.3/"
|
|
arch="noarch"
|
|
license="BSD-2-Clause"
|
|
depends="python3 py3-setuptools py3-yaml"
|
|
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 --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="c33e383d92065d2b9ca75dff3d51e46f19245a156535835b7545cf26ab4f839db7cac95328c4f370cda1a61432cc2ab85ba0f88b67f4b0c3a57cbeaff591e34c invoke-1.3.0.tar.gz"
|