summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3c06b74fd58312f156bfbde1f4d2ebb400af9f69 (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
# Maintainer: Will Handley <wh260@cam.ac.uk> (aur.archlinux.org/account/wjhandley)
pkgname=lalapps
_pkgname=${pkgname}
pkgver=6.21.0
pkgrel=9
pkgdesc="The LIGO Scientific Consortium Algorithm Library Suite. ${_pkgname}"
arch=(any)
url="https://wiki.ligo.org/DASWG/LALSuiteInstall"
license=('unknown')
groups=('lalsuite')
depends=('lalcore' 'lalframe' 'lalmetaio' 'lalxml' 'lalsimulation' 'lalburst' 'lalinspiral' 'lalpulsar' 'lalinference' 'lalstochastic')
makedepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=(!emptydirs)
install=
source=("http://software.ligo.org/lscsoft/source/lalsuite/${_pkgname}-${pkgver}.tar.xz")
sha256sums=('2b997406b7bca358295e6d060919346fd5281ec0217a357c91849012bc2c9973')
build() {
    cd "${srcdir}/${_pkgname}-${pkgver}"
    2to3 -wn src/pulsar/HeterodyneSearch/make_frame_cache
    ./configure --prefix=${pkgdir}/usr CFLAGS='-O3 -Wno-error'
    make -j
}
#check() {
#    cd "${srcdir}/${_pkgname}-${pkgver}"
#    make -j check
#}
package() {
    cd "${srcdir}/${_pkgname}-${pkgver}"
    make install
}