diff options
Diffstat (limited to 'python-owslib/PKGBUILD')
-rw-r--r-- | python-owslib/PKGBUILD | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/python-owslib/PKGBUILD b/python-owslib/PKGBUILD deleted file mode 100644 index 8a83e2a74..000000000 --- a/python-owslib/PKGBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# Maintainer: Erich Eckner <arch at eckner dot net> -# Contributor: Doug Newgard <scimmia at archlinux dot info> - -pkgbase=python-owslib -pkgname=('python-owslib' 'python2-owslib') -pkgver=0.16.0 -pkgrel=1 -pkgdesc='Python package for client programming with Open Geospatial Consortium (OGC) web service interface standards, and their related content models' -arch=('any') -url='http://geopython.github.io/OWSLib' -license=('BSD') -makedepends=('python-setuptools' 'python2-setuptools' - 'python2-dateutil' 'python2-pytz' 'python2-requests' 'python2-pyproj' - 'python-dateutil' 'python-pytz' 'python-requests' 'python-pyproj') -source=("$pkgbase-$pkgver.tar.gz::https://github.com/geopython/OWSLib/archive/$pkgver.tar.gz") -sha512sums=('a468352dfdb62bea1e6189efcc198237cb909051e51782abb15093e328ca7d3d379e88d0466e42c39ce9bc201a3be828a779193666bf9befe8d501355aaddbf4') - -package_python-owslib() { - pkgdesc='Python package for client programming with Open Geospatial Consortium (OGC) web service interface standards, and their related content models' - depends=('python-dateutil' 'python-pytz' 'python-requests' 'python-pyproj') - - cd OWSLib-$pkgver - - python setup.py install --root="$pkgdir" --optimize=1 - - install -Dm644 LICENSE.txt -t "$pkgdir/usr/share/licenses/$pkgname/" -} - -package_python2-owslib() { - pkgdesc='Python2 package for client programming with Open Geospatial Consortium (OGC) web service interface standards, and their related content models' - depends=('python2-dateutil' 'python2-pytz' 'python2-requests' 'python2-pyproj') - - cd OWSLib-$pkgver - - python2 setup.py install --root="$pkgdir" --optimize=1 - - install -Dm644 LICENSE.txt -t "$pkgdir/usr/share/licenses/$pkgname/" -} |