diff options
author | Nicolás Reynolds <fauno@parabola.nu> | 2013-04-22 12:55:18 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@parabola.nu> | 2013-04-22 12:55:18 -0300 |
commit | 5d73e0d0fbcfdd552a97bb37d173f8d9a38750a3 (patch) | |
tree | 9d8940bd842b4ffd37c86f2074e45f4923f51f5f /pcr/python2-pywebdav/PKGBUILD | |
parent | 20e5a1a55a7bf5d317ba7f8397713be3873a7616 (diff) | |
parent | 4e46a07ffcebe8aeee045615623bc141df8f6466 (diff) |
Merge branch 'master' of vparabola:abslibre
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..c5c72b22a --- /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') + +package() +{ + cd $srcdir/PyWebDAV-$pkgver + python2 setup.py install --root=$pkgdir/ + install -D doc/LICENSE $startdir/pkg/usr/share/licenses/$pkgname/LICENSE +} |