summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2018-04-18 13:56:58 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2018-04-18 13:56:58 -0500
commit17bb5af1132fda7447b9b36d1ef40f96db85fbd4 (patch)
tree98a82e4f29eaad6b4dec671b61f8a0237c66f7cc
parent4bc47442f353ce3160e8026526d9371d3baa2a41 (diff)
downloadabslibre-17bb5af1132fda7447b9b36d1ef40f96db85fbd4.tar.gz
abslibre-17bb5af1132fda7447b9b36d1ef40f96db85fbd4.tar.bz2
abslibre-17bb5af1132fda7447b9b36d1ef40f96db85fbd4.zip
Removing spatialindex: This package is in [community] repo
-rw-r--r--pcr/spatialindex/LICENSE9
-rw-r--r--pcr/spatialindex/PKGBUILD37
2 files changed, 0 insertions, 46 deletions
diff --git a/pcr/spatialindex/LICENSE b/pcr/spatialindex/LICENSE
deleted file mode 100644
index 888f4e789..000000000
--- a/pcr/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/pcr/spatialindex/PKGBUILD b/pcr/spatialindex/PKGBUILD
deleted file mode 100644
index 6cde5eb70..000000000
--- a/pcr/spatialindex/PKGBUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# Original Maintainer (Arch): Lantald <lantald at Gmx dot com>
-# Maintainer (Arch): Danilo <aur at dbrgn dot ch>
-# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
-
-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: