blob: f25015ca4d5758ccf72c942a0beb10dfffbda98f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#Maintainer Reto <reto@labrat.space>
pkgname='python-pywatchman'
pkgver=1.4.1
pkgrel=0
pkgdesc="Watchman client for python"
url="https://github.com/facebook/watchman"
depends=('python')
optdepends=('watchman')
license=('Apache')
arch=('x86_64')
makedepends=('python' 'python-setuptools')
source=("https://pypi.python.org/packages/source/p/pywatchman/pywatchman-$pkgver.tar.gz")
package() {
cd "$srcdir/pywatchman-$pkgver"
python setup.py build
python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
}
md5sums=('d770d09bd105e83013f63492fce70c6f')
|