summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b697d984ff3340ef914be46507525be81d522886 (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
# Maintainer: Alexander F. Rødseth <xyproto@archlinux.org>

pkgname=python-pyswip
pkgver=0.2.10
pkgrel=5
pkgdesc='Python wrapper for SWI-Prolog'
arch=(any)
url='https://github.com/yuce/pyswip'
license=(MIT)
depends=(python swi-prolog)
makedepends=(git python-setuptools)
source=("git+$url#commit=9e9ca3e0059d156397fb020c2bdaef70f59529a6") # tag: v0.2.10
sha256sums=('SKIP')

build() {
  cd pyswip
  python setup.py build
}

check() {
  cd pyswip
  python setup.py check
}

package() {
  cd pyswip
  python setup.py install --prefix=/usr --root="$pkgdir"
  install -d "$pkgdir/usr/share/doc/$pkgname"
  cp -R examples "$pkgdir/usr/share/doc/$pkgname"
  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}