mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +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
29 lines
965 B
Text
29 lines
965 B
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-bottle-api
|
|
_pkgname=bottle-api
|
|
pkgver=0.0.4
|
|
pkgrel=4
|
|
pkgdesc="Bottle JSON Web API"
|
|
options="!check" # tests not present in pypi tarballs, only github which has no tags
|
|
url="https://github.com/tomotaka/bottle-api"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3 py3-bottle"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
replaces="py-bottle-api" # Backwards compat
|
|
provides="py-bottle-api=$pkgver-r$pkgrel" # Backwards compat
|
|
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="538f0a12941a333fcae5694edba3930d449ed5464f05e760fb174481acf2bb95c413f1fa3cf67b09f7fd647c60bcbbad05a51f020d64dc41b39b25b7744308c6 bottle-api-0.0.4.tar.gz"
|