summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f514bd69515acaef3ad3494249149e45e674332f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
pkgname=python-orient
pkgver=1.5.5
pkgrel=1
pkgdesc="Python bindings for OrientDB"
arch=('any')
url=https://github.com/mogui/pyorient
license=('Apache')
groups=()
depends=('python')
makedepends=('python-setuptools')
source=(https://pypi.python.org/packages/source/p/pyorient/pyorient-${pkgver}.tar.gz)
sha256sums=('6f5c657a4a13bcc5e6875850c6b51fedf2fccd15a86ff1fef6cdedb546feb1ce')

build() {
  cd "$srcdir"/pyorient-${pkgver}
  python setup.py build
}

package() {
  cd "$srcdir"/pyorient-${pkgver}
  python setup.py install --root="$pkgdir/" --prefix="/usr" --optimize=1
}