1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/community/py3-tmdbv3api/APKBUILD
psykose deb62258ec */*: set --skip-build for python installs
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
2023-01-10 04:19:31 +01:00

26 lines
808 B
Text

# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=py3-tmdbv3api
pkgver=1.7.7
pkgrel=1
pkgdesc="A lightweight Python library for The Movie Database (TMDb) API"
url="https://github.com/AnthonyBloomer/tmdbv3api"
arch="noarch"
license="MIT"
depends="python3"
makedepends="py3-setuptools"
source="https://pypi.python.org/packages/source/t/tmdbv3api/tmdbv3api-$pkgver.tar.gz"
options="!check" # No tests in Pypi package and API key required
builddir="$srcdir/tmdbv3api-$pkgver"
build() {
python3 setup.py build
}
package() {
python3 setup.py install --skip-build --root="$pkgdir"
}
sha512sums="
6a6f54fadf20ba5a212aa334a7f5dde180948723a13631ece7ae4531daf0cb82bd03d3fa59e870cb483c764e3f93d89542659a7c24ae23bfa24f31d05ba01a70 tmdbv3api-1.7.7.tar.gz
"