summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4d63012a8d081a1854108b351c3e2eea2fb5df04 (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
pkgname=python-sapply-git
pkgver=0.1.9
pkgrel=1
arch=('any')
pkgdesc='Apply a series of string manipulations on text easily.'
url='https://github.com/jmdaemon/sapply'
license=('MIT')
depends=('python' 'python-wora' 'python-regex' 'python-spacy')
optdepends=()
makedepends=('python-setuptools')
source=("$pkgname::git+https://github.com/jmdaemon/sapply#branch=master")
provides=(python-sapply)
conflicts=(python-sapply)
sha512sums=("SKIP")

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

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