mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 03:35:38 +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
797 B
Text
29 lines
797 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-vlc
|
|
pkgver=3.0.18121
|
|
pkgrel=0
|
|
pkgdesc="VLC bindings for Python"
|
|
url="https://wiki.videolan.org/PythonBinding"
|
|
arch="noarch !s390x !armhf !riscv64" # limited by vlc
|
|
license="LGPL-2.1-or-later"
|
|
depends="
|
|
python3
|
|
vlc
|
|
"
|
|
makedepends="py3-setuptools"
|
|
source="https://pypi.python.org/packages/source/p/python-vlc/python-vlc-$pkgver.tar.gz"
|
|
options="!check" # No tests
|
|
builddir="$srcdir/python-vlc-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
3b5d44142c073dc5a98b6c62bbd4f675434aef9a5eb24f0c80ab19bc29a63877b6c4ab5cf56233c5f2fa0a5b40cc9c48583a8868fea5c351a8d751e32f51d807 python-vlc-3.0.18121.tar.gz
|
|
"
|