mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 11:15:13 +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
26 lines
705 B
Text
26 lines
705 B
Text
# Maintainer: Pedro Lucas Porcellis <porcellis@eletrotupi.com>
|
|
pkgname=py3-asif
|
|
_pkgname=asif
|
|
pkgver=0.3.1
|
|
pkgrel=1
|
|
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/$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
options="!check" # no testsuite
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
422c9219640c6a2704ea5925d9cb2d6c7ce1195223102109b729dca516d4371d94ee8b8d2e0b5f0ffaca4cceffabfb6b23bfef84a494bf34723799f02c1089f2 py3-asif-0.3.1.tar.gz
|
|
"
|