summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 579e82cc2b07216e16f218efc72b94d7de3b45fb (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
# Maintainer: Lumaku <lumaku@mailbox.org>
pkgname=python-lhotse-git
pkgver=1.5.0.dev0+git.08a613a0.clean
pkgrel=1
pkgdesc="Speech and audio data preparation toolkit"
arch=('any')
url='https://github.com/lhotse-speech/lhotse'
license=('Apache 2.0')
depends=('python>=3.7'
         'python-audioread'
         'python-soundfile'
         'python-click'
         'python-cytoolz'
         'python-h5py'
         'python-intervaltree'
         'python-lilcom-git'
         'python-packaging'
         'python-pyaml'
         'python-tqdm'
         'python-torchaudio')
makedepends=('git' 'python-setuptools')
provides=('python-lhotse')
conflicts=("python-lhotse")
source=(
    "${pkgname}::git+${url}")
md5sums=(
    'SKIP')


pkgver() {
    cd "${pkgname}"
    printf "%s" "$(python setup.py --version)"
}


build() {
    cd "${pkgname}"
    python setup.py build
}


package() {
    cd "${pkgname}"
    export PYTHONHASHSEED=0
    python setup.py install --root="$pkgdir" --optimize=1 --skip-build
}