diff options
author | Erich Eckner <git@eckner.net> | 2018-07-05 15:57:39 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-07-05 15:57:39 +0200 |
commit | 7e48c1ae200150150937a27f9e3f3765770d3981 (patch) | |
tree | e19ef6d07cff17f6c3092e89ef1b63b159ba37a1 /spatialindex | |
parent | 3f202d35d624b75d0ecb0961273db4838dec1eb4 (diff) | |
download | archlinuxewe-7e48c1ae200150150937a27f9e3f3765770d3981.tar.xz |
removed (obsolete): perl-data-section perl-parallel-forkmanager perl-software-license perl-test-failwarnings perl-test-mocktime python-owslib qwtpolar spatialindex
Diffstat (limited to 'spatialindex')
-rw-r--r-- | spatialindex/LICENSE | 9 | ||||
-rw-r--r-- | spatialindex/PKGBUILD | 37 |
2 files changed, 0 insertions, 46 deletions
diff --git a/spatialindex/LICENSE b/spatialindex/LICENSE deleted file mode 100644 index 888f4e789..000000000 --- a/spatialindex/LICENSE +++ /dev/null @@ -1,9 +0,0 @@ -Permission is hereby granted, free of charge, to any person obtaining acopy of this software and associated documentation files (the "Software"),to deal in the Software without restriction, including without limitationthe rights to use, copy, modify, merge, publish, distribute, sublicense,and/or sell copies of the Software, and to permit persons to whom theSoftware is furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included inall copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. diff --git a/spatialindex/PKGBUILD b/spatialindex/PKGBUILD deleted file mode 100644 index 7f8457dcc..000000000 --- a/spatialindex/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# Original Maintainer: Lantald <lantald at Gmx dot com> -# Contributor: Danilo <aur at dbrgn dot ch> -# Maintainer: Erich Eckner <arch at eckner dot net> - -pkgname=spatialindex -pkgver=1.8.5 -pkgrel=1 -pkgdesc='An extensible framework that supports robust spatial indexing methods and sophisticated spatial queries.' -arch=('i686' 'x86_64') -url="http://libspatialindex.github.com/" -license=('MIT') -depends=(gcc-libs) -provides=(spatialindex) -conflicts=(libspatialindex-git) -source=("http://download.osgeo.org/libspatialindex/$pkgname-src-$pkgver.tar.gz" - 'LICENSE') -sha256sums=('7caa46a2cb9b40960f7bc82c3de60fa14f8f3e000b02561b36cbf2cfe6a9bfef' - '170961cdd7754bed14e465eff7d4f22c5df11d8d104310a56a7ee3ab201bc279') - -build() { - cd "$srcdir/$pkgname-src-$pkgver/" - ./configure --prefix=/usr - make -} - -check() { - cd "$srcdir/$pkgname-src-$pkgver/" - make -k check -} - -package() { - cd "$srcdir/$pkgname-src-$pkgver/" - make DESTDIR="$pkgdir/" install - install -D -m644 ${srcdir}/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -} - -# vim:set ts=2 sw=2 et: |