blob: 4a5120d5819d2155ab2c676081f919768642579f (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Maintainer: Yauheni Kirylau <actionless dot loveless AT gmail MF com>
# shellcheck disable=SC2034,SC2154
pkgname=python-encodec-git
pkgver=v0.1.1.r21.g0e2d0ae
pkgrel=1
pkgdesc="EnCodec: High Fidelity Neural Audio Compression by Facebook"
arch=('any')
url="https://github.com/facebookresearch/encodec"
license=('MIT')
source=(
"${pkgname}::git+${url}.git#branch=main"
)
md5sums=('SKIP')
depends=(
'python-numpy'
'python-pytorch'
'python-torchaudio'
'python-einops'
)
makedepends=(
'python-wheel'
'python-hatchling'
'python-build'
'python-installer'
'python-setuptools' # i think it normally should be required by python-pep517 which required by python-build/installer
)
optdepends=(
)
conflicts=('python-encodec')
provides=('python-encodec')
pkgver() {
cd "${srcdir}/${pkgname}" || exit 2
set -o pipefail
git describe --tags --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g' || echo 0.0.1
}
build() {
cd "${srcdir}/${pkgname}" || exit 2
/usr/bin/python3 -m build --wheel --no-isolation
}
package() {
cd "${srcdir}/${pkgname}" || exit 2
/usr/bin/python3 -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|