blob: f4b81bcbf5383cb9b9952761d3e0369ff71bc77a (
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
|
# Maintainer : Kitestramuort <kitestramuort@autistici.org>
pkgname=stc-coda
pkgver=2.24
pkgrel=1
pkgdesc="The Common Data Access toolset"
arch=('x86_64')
url="https://www.stcorp.nl"
license=('BSD')
depends=('python' 'hdf4' 'hdf5' 'java-environment')
provides=('hdf-coda')
source=("https://github.com/stcorp/coda/releases/download/${pkgver}/coda-${pkgver}.tar.gz")
md5sums=('b0bbb6aab6719e94db128126457fd8a2')
build() {
cd coda-${pkgver}
./configure --prefix=/usr --libdir=/usr/lib --enable-java --enable-python --with-hdf5 --with-hdf4=/opt/hdf4
make
}
package() {
cd coda-$pkgver
make DESTDIR=${pkgdir} install
#install -Dm 644 "coda-${pkgver}/COPYING" "${pkgdir}/usr/share/licenses/${pkgname}"
}
|