diff options
Diffstat (limited to 'pcr/python2-pywebdav/PKGBUILD')
-rw-r--r-- | pcr/python2-pywebdav/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pcr/python2-pywebdav/PKGBUILD b/pcr/python2-pywebdav/PKGBUILD new file mode 100644 index 000000000..0ae43ddb5 --- /dev/null +++ b/pcr/python2-pywebdav/PKGBUILD @@ -0,0 +1,22 @@ +# Maintainer: Dan Serban (dserban01 => gmail) +# Contributor: Gour <gour@gour-nitai.com> + +pkgname=python2-pywebdav +pkgver=0.9.8 +pkgrel=1 +pkgdesc="A standards compliant WebDAV server and library written in Python" +arch=('any') +url="http://code.google.com/p/pywebdav/" +license=('GPLv2') +depends=('python2' 'pyxml') +conflicts=('python-pywebdav') +makedepends=('python2-distribute') +source=(http://pywebdav.googlecode.com/files/PyWebDAV-$pkgver.tar.gz) +md5sums=('2fd2aca0074f0d0ac2701c9c0cadb89e') + +build() +{ + cd $srcdir/PyWebDAV-$pkgver + python2 setup.py install --root=$pkgdir/ + install -D doc/LICENSE $startdir/pkg/usr/share/licenses/$pkgname/LICENSE +} |