blob: 634900cbb77568cf5d3d212697072a2c5f865815 (
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
|
# Maintainer: Ruben Bekaert <bekaertruben@gmail.com>
pkgname=pygplates
pkgdesc="PyGPlates enables access to GPlates functionality via the Python programming language."
url="https://www.gplates.org"
license=(GPLv2)
arch=(x86_64)
pkgver=0.36.0
pkgrel=2
depends=(gplates python python-numpy)
makedepends=(cmake python-sphinx)
source=(
"${pkgname}_${pkgver}_src.zip::https://www.earthbyte.org/download/9112"
)
sha256sums=(
"f18b34ea5f3f70c7df7b09190dc14cd0ff17eab084a116f45e629511fae95003"
)
build() {
cd "${srcdir}/${pkgname}_${pkgver}_src"
cmake .
make
}
package() {
cd "${srcdir}/${pkgname}_${pkgver}_src"
make DESTDIR="${pkgdir}/" install
}
|