diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2017-01-23 05:11:18 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2017-01-23 05:11:18 -0500 |
commit | 70b430b9faceb393622375a3c4804417c07cf6b5 (patch) | |
tree | 692b0a3bf47c2754ef6461cabdea106db3c1016a /pcr/python2-caldav | |
parent | ae729ad2641c9063225b2daaacc0c9a0bd66c2a7 (diff) | |
download | abslibre-70b430b9faceb393622375a3c4804417c07cf6b5.tar.gz abslibre-70b430b9faceb393622375a3c4804417c07cf6b5.tar.bz2 abslibre-70b430b9faceb393622375a3c4804417c07cf6b5.zip |
python2-caldav: add new package to [pcr]
Diffstat (limited to 'pcr/python2-caldav')
-rw-r--r-- | pcr/python2-caldav/PKGBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pcr/python2-caldav/PKGBUILD b/pcr/python2-caldav/PKGBUILD new file mode 100644 index 000000000..5e0ab2213 --- /dev/null +++ b/pcr/python2-caldav/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer (Arch): Elena ``of Valhalla'' Grandi <elena.valhalla@gmail.com> +# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe> +pkgname=python2-caldav +pkgver=0.4.0 +pkgrel=2 +pkgdesc="Caldav client library" +arch=('any') +url='https://bitbucket.org/cyrilrbt/caldav/wiki/Home' +license=('GPL') +depends=('python2' 'python2-lxml' 'python2-vobject' 'python2-dateutil' + 'python2-distribute' 'python2-six' 'python2-requests') +options=(!emptydirs) +source=("http://pypi.python.org/packages/source/c/caldav/caldav-${pkgver}.tar.gz") +sha256sums=('1e512f2989901d853ba43a3e98b1daff77569663ac3a7e29492fcecf4e86f858') + +package() { + cd "$srcdir/caldav-$pkgver" + python2 setup.py install --root="$pkgdir/" --optimize=1 + rm -r "$pkgdir/usr/lib/python2.7/site-packages/tests" +} |