updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / ossim / PKGBUILD
blob49a86c5a18cde9ff44cd4f4a53e11e852860fb68
1 # Contributor: Dylon Edwards <deltaecho@archlinux.org>
3 pkgname=ossim
4 pkgver=1.7.13
5 pkgrel=2
7 pkgdesc="A set of libraries and tools for remote sensing and geographic information systems"
8 url="http://www.ossim.org/OSSIM/OSSIMHome.html"
9 license=('LGPL')
11 arch=('i686' 'x86_64')
13 depends=('freetype2' 'gdal' 'libgeotiff' 'libjpeg' 'libtiff' 'libwms' 'openthreads')
14 makedepends=()
15 optdepends=()
17 source=()
18 md5sums=()
20 #  This is for version 1.7.13, not 13935,
21 #+ so I don't want Pacman to change the pkgver ;)
22 svntrunk="http://svn.osgeo.org/ossim/tags/v${pkgver//./_}"
23 svnmod="ossim"
25 build() {
27   # Checkout the source code
28   [[ ! -d ${svnmod}/.svn ]] && svn co ${svntrunk}/${svnmod}
29   cd ${svnmod}
31   # Configure OSSIM
32   chmod +x configure
33   ./configure --prefix=/usr \
34     --sysconfdir=/etc \
35     --localstatedir=/var \
36     --enable-optimization \
37     --disable-debug || return 1
39   # Make and install the application
40   make || return 1
41   make DESTDIR=${pkgdir} install || return 1
43   # Install the configuration file
44   install -D -m644 etc/config_files/dbossim.cfg ${pkgdir}/etc/ossim/dbossim.cfg