diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/proj |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/proj')
-rw-r--r-- | community/proj/ChangeLog | 2 | ||||
-rw-r--r-- | community/proj/PKGBUILD | 33 |
2 files changed, 35 insertions, 0 deletions
diff --git a/community/proj/ChangeLog b/community/proj/ChangeLog new file mode 100644 index 000000000..017763ec9 --- /dev/null +++ b/community/proj/ChangeLog @@ -0,0 +1,2 @@ +2007-06-27 tardo <tardo@nagi-fanboi.net> +* Fixed license dir | license -> licenses diff --git a/community/proj/PKGBUILD b/community/proj/PKGBUILD new file mode 100644 index 000000000..353b54ad5 --- /dev/null +++ b/community/proj/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 5889 2009-11-22 12:14:56Z ibiru $ +# Maintainer: Mateusz Herych <heniekk@gmail.com> +# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org +# Contributor: William Rea <sillywilly@gmail.com> + +pkgname=proj +pkgver=4.7.0 +pkgrel=1 +pkgdesc="Cartographic Projections library" +arch=('i686' 'x86_64') +url="http://trac.osgeo.org/proj/" +license=('MIT') +options=('!libtool') +source=(http://download.osgeo.org/proj/$pkgname-$pkgver.tar.gz + http://download.osgeo.org/proj/$pkgname-datumgrid-1.5.zip + http://www.swisstopo.admin.ch/internet/swisstopo/en/home/topics/survey/lv03-lv95/chenyx06/distortion_grids.parsys.65772.downloadList.94632.DownloadFile.tmp/chenyx06antv2.zip) +md5sums=('927d34623b52e0209ba2bfcca18fe8cd' + 'f5bf28a2a9c6afe9a3f670f0c0adb783' + 'fbbfe2b6bcbc41168fe3bdc4a6c1082a') + + +build() { + bsdtar -xzvf ${srcdir}/${pkgname}-datumgrid-1.5.zip -C ${srcdir}/proj-${pkgver}/nad + bsdtar -xzvf ${srcdir}/chenyx06.zip -C ${srcdir}/proj-${pkgver}/nad CHENYX06.gsb + + cd ${srcdir}/proj-${pkgver} + + ./configure --prefix=/usr + make || return 1 + make DESTDIR=${pkgdir} install + + install -D COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE +} |