mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 03:51:30 +02:00
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
|
|
# Maintainer:
|
|
pkgname=py-audioread
|
|
pkgver=1.0.3
|
|
pkgrel=0
|
|
pkgdesc="Cross-library audio decoding for Python"
|
|
url="https://github.com/sampsyo/audioread"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python2"
|
|
depends_dev=""
|
|
makedepends="python2-dev"
|
|
install=""
|
|
subpackages=""
|
|
source="https://files.pythonhosted.org/packages/source/a/audioread/audioread-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/audioread-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python2 setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="b3836586618c09acf4b868bdc2cbcc66 audioread-1.0.3.tar.gz"
|
|
sha256sums="4ae8de1997e47797879c6484296d466a6a750ad93c6cd0b26c05bf71c6aa1ba5 audioread-1.0.3.tar.gz"
|
|
sha512sums="7868d8ac48c55bf70dce10be094681737edd07530a1ff29d2ab2ec4f5eb6d51d89145d2c5dc5e661d9ecdafdcb27032c767f4bd9a01236b8d23e7fb7634b4eda audioread-1.0.3.tar.gz"
|