summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cc739f92c5abf8da22158f9a7fd70e42ff8ca2bb (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
# Maintainer: Lumaku <lumaku@mailbox.org>
pkgname=python-sentencepiece-git
pkgver=0.2.0
pkgrel=1
pkgdesc='Sentencepiece text tokenizer (Python version)'
arch=('any')
url='https://github.com/google/sentencepiece'
license=('Apache 2.0')
depends=('python>=3.7' 'python-protobuf')
makedepends=('git' 'cmake' 'python-setuptools')
provides=('python-sentencepiece')
conflicts=("python-sentencepiece")
source=(
    "${pkgname}::git+${url}")
md5sums=(
    'SKIP')


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


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


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