summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b40e52859897d89c665f9b9d70da245fbb245ddb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Maintainer: Angel de Vicente <angel.vicente.garrido at gmail dot com>
# Contributor: XavierCLL <xavier.corredor.llano (a) gmail.com>

pkgname=hdf-eos2
pkgver=2.20
pkgrel=3
pkgdesc="The HDF-EOS v2 is a software library designed built on HDF4 to support EOS-specific data structures, namely Grid, Point, and Swath."
url="http://www.hdfeos.org/software/library.php"
license=('GPL')
arch=('i686' 'x86_64')
depends=('libaec' 'hdf5' 'hdf4' 'gdal' 'hdf-eos-common')
options=('libtool' 'staticlibs')
source=("https://git.earthdata.nasa.gov/rest/git-lfs/storage/DAS/hdfeos/cb0f900d2732ab01e51284d6c9e90d0e852d61bba9bce3b43af0430ab5414903?response-content-disposition=attachment%3B%20filename%3D%22HDF-EOS2.20v1.00.tar.Z%22%3B%20filename*%3Dutf-8%27%27HDF-EOS2.20v1.00.tar.Z"
        "szip_cc.patch")
sha256sums=('cb0f900d2732ab01e51284d6c9e90d0e852d61bba9bce3b43af0430ab5414903'
            '7d9d204090cb4b5faeaea6075a4d0103cbd79da3bc154466b2108a05627e2517')


build() {
  cd hdfeos
  
  patch -p1 -i ../szip_cc.patch

  ./configure CC=/usr/bin/h5cc \
    --with-hdf5=/usr \
    --with-hdf4=/opt/hdf4 \
    --with-zlib=/usr \
    --with-szlib=/usr \
    --prefix=/usr \
    --disable-static \
    --enable-static=no \
    --enable-hl \
    --enable-threadsafe \
    --enable-linux-lfs \
    --enable-production=yes \
    --enable-parallel=yes \
    --with-pic \
    --docdir=/usr/share/doc/hdf5/ \
    --with-pthread=/usr/lib/ \
    --enable-install-include \
    --enable-cxx \
    --disable-sharedlib-rpath

  make
}

package() {
  cd hdfeos
  make DESTDIR=$pkgdir install

  #install example
  install -d -m755 $pkgdir/usr/share/doc/hdf-eos2
  install -m644 samples/* $pkgdir/usr/share/doc/hdf-eos2/

  # delete common files
  rm $pkgdir/usr/include/{cfortHdf.h,cproj.h,ease.h,isin.h,proj.h,bcea.h,cproj_prototypes.h,gctp_prototypes.h}
  
  rm $pkgdir/usr/lib/libGctp.a
  rm $pkgdir/usr/lib/libGctp.la
}