blob: 675a919d31f0499122aafe0675e24960e48a26c9 (
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: AstroFloyd < AstroFloyd [at] gmail [dt] com >
pkgname=gwtool
pkgver=0.2.0
pkgrel=3
pkgdesc="Simple tools for working with gravitational waves"
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
url="http://gwtool.sourceforge.net/"
license=('GPL3')
depends=('libsufr')
makedepends=('cmake' 'gcc-fortran')
changelog=ChangeLog
source=("http://sourceforge.net/projects/gwtool/files/latest/${pkgname}-${pkgver}.tar.gz")
sha512sums=('0a2208c9098b5e433fe410e703d3637abdab494f8f235ccacf78f4b65e2b07fcdb778c3f69453e58607f9af7a089f838f6f956c97ac54864d4b05ec4161a30a7')
build() {
cd "${srcdir}/gwtool-${pkgver}"
mkdir build && cd build/
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr ..
make
}
package() {
cd "${srcdir}/gwtool-${pkgver}/build/"
make DESTDIR="${pkgdir}" install
}
# vim:set ts=2 sw=2 et:
|