summaryrefslogtreecommitdiff
path: root/community/libgeotiff/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/libgeotiff/PKGBUILD')
-rw-r--r--community/libgeotiff/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/community/libgeotiff/PKGBUILD b/community/libgeotiff/PKGBUILD
new file mode 100644
index 000000000..67e2632a7
--- /dev/null
+++ b/community/libgeotiff/PKGBUILD
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 78993 2012-10-28 17:33:39Z jlichtblau $
+# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+# Contributor: Brad Fanella <bradfanella@archlinux.us>
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+# Contributor: William Rea <sillywilly@gmail.com>
+
+pkgname=libgeotiff
+pkgver=1.4.0
+pkgrel=1
+pkgdesc="A TIFF based interchange format for georeferenced raster imagery"
+arch=('i686' 'x86_64')
+url="http://www.remotesensing.org/geotiff"
+license=('custom')
+depends=('libtiff' 'proj' 'libjpeg>=7')
+options=('!makeflags' '!libtool')
+changelog=$pkgname.changelog
+source=(ftp://ftp.remotesensing.org/pub/geotiff/libgeotiff/$pkgname-$pkgver.tar.gz)
+sha256sums=('d0acb8d341fd6a8f2c673456e09fdb8f50f91e3166ac934719fe05b30d328329')
+
+build() {
+ cd ${srcdir}/$pkgname-$pkgver
+
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd ${srcdir}/$pkgname-$pkgver
+
+ make DESTDIR=${pkgdir} install
+ install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/libgeotiff/LICENSE
+}