blob: 08eae4f4bbae23e8cf0f9d1204e4fae70a108fb7 (
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
|
# Maintainer : Kitestramuort <kitestramuort@autistici.org>
pkgname=harp
pkgver=1.24
pkgrel=1
pkgdesc="Data harmonization toolset for scientific earth observation data"
arch=('x86_64')
url="https://github.com/stcorp/harp"
license=('BSD')
depends=('python' 'hdf4' 'hdf5' 'r' 'stc-coda')
provides=('harp')
source=("https://github.com/stcorp/harp/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz")
md5sums=('ac3032783e0bfc9cb93e97a1de2d9aef')
build() {
cd ${pkgname}-${pkgver}
CFLAGS=-I/usr/include/R ./configure --prefix=/usr --libdir=/usr/lib --enable-R --enable-python --with-hdf5 --with-hdf4=/opt/hdf4
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR=${pkgdir} install
install -Dm 644 "COPYING" "${pkgdir}/usr/share/licenses/${pkgname}"
}
|