updated on Tue Jan 17 20:03:13 UTC 2012
[aur-mirror.git] / py9p-hg / PKGBUILD
blobfbfcd834568f57b36e10b5d7af814ef628804184
1 # Maintainer: Jens Staal <staal1978@gmail.com>
3 pkgname=py9p-hg
4 pkgver=0.0.1
5 pkgrel=1
6 pkgdesc="The the Plan9 9P2000 file system protocol implemented for Python"
7 arch=('i686' 'x86_64')
8 license=('custom:public domain') # This is the licencing of Tim Newsham's variant
9 # Please notify if other licencing (LPL?) applies for this variant
10 # Also see: http://repo.cat-v.org/py9p/
11 url="http://mirtchovski.com/p9/py9p/index.php"
12 depends=('python2')
13 makedepends=('mercurial')
14 #source=('')
15 #md5sums=('')
17 build() {
18   cd $srcdir
20 # Update the repo, else clone a new one
21         if [ -d py9p ]; then
22                 cd py9p
23                 hg pull -u
24                 cd $srcdir
25         else
26                 hg clone https://bitbucket.org/f2f/py9p
27         fi
28   cd $srcdir/py9p
29   yes | python2 setup.py build
32 package() {
33   cd $srcdir/py9p
34   yes | python2 setup.py install --root="${pkgdir}"