blob: d70b9b3a150d017cf9b4eaef3603b957591b65dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Maintainer: Maintainer: Martin Rys <https://rys.rs/contact> | Toss a coin on https://rys.rs/donate
pkgname=python-playsound3
_pkg=playsound3
pkgver=2.5.2
pkgrel=1
pkgdesc="Pure Python library for playing sounds"
arch=('any')
url="https://github.com/sjmikler/playsound3"
license=('MIT')
depends=(
'python'
'python-certifi'
'python-gobject'
'gstreamer')
makedepends=(
'python-build'
'python-installer'
'python-hatchling'
'python-wheel')
source=("${pkgname}-${pkgver}.tar.gz::https://files.pythonhosted.org/packages/source/p/${_pkg}/${_pkg}-${pkgver}.tar.gz")
sha256sums=('37e75d9803cae5801e3a7c16bf6c8715c3f486df3637e550c9c729e544652ccc')
build() {
cd "${_pkg}-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "${_pkg}-${pkgver}"
PYTHONHASHSEED=0 python -m installer --destdir="${pkgdir}/" dist/*.whl
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|