mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
26 lines
707 B
Text
26 lines
707 B
Text
# Maintainer: Pedro Lucas Porcellis <porcellis@eletrotupi.com>
|
|
pkgname=py3-asif
|
|
_pkgname=asif
|
|
pkgver=0.3.0
|
|
pkgrel=0
|
|
pkgdesc="asyncio-powered IRC bot framework"
|
|
url="https://github.com/minus7/asif"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/minus7/asif/archive/v$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
options="!check" # no testsuite
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
7d7fa82cbfa7bf7eb693be32d6f63ed397f82f9b14a1e60c99e0a0538fea4343933152fdb22dbcc40ff9701d22a08d8e8ee5929469f57ae76fa96c50209222c6 py3-asif-0.3.0.tar.gz
|
|
"
|