blob: a227462a51475e18180ed00f1eead3b1ae2afdc0 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Maintainer: Yigit Dallilar <yigit.dallilar@gmail.com>
pkgname=heasoft
pkgver=6.34
pkgrel=1
# _mod should be '', '_no_xspec_modeldata' or '_plus_older_xspec_modeldata'
_mod=''
pkgdesc='NASA high energy astrophysics library'
depends=('inetutils' 'libxpm' 'libidn' 'ncurses' 'readline')
makedepends=('gcc13-fortran' 'glibc' 'gcc-fortran' 'perl' 'python-astropy' 'python-matplotlib' 'python-pip' 'python-scipy' 'python-setuptools')
optdepends=(
"python-astropy: python binding"
"python-numpy: python binding"
)
url="https://heasarc.gsfc.nasa.gov/docs/software/lheasoft/"
arch=('x86_64')
license=('NASA' 'GPL')
source=("https://heasarc.gsfc.nasa.gov/FTP/software/lheasoft/lheasoft${pkgver}/heasoft-${pkgver}src${_mod}.tar.gz")
# You could use below to get offical md5
# curl -s ${source}.md5 | awk '{print "md5sums=(", $1, ")"}'
md5sums=('0e73951dd285dfd401e918c4cefcad6f')
install="$pkgname.install"
build() {
cd "heasoft-$pkgver/BUILD_DIR"
LDFLAGS='-lm' CC='gcc-13' CXX='g++-13' FC='gfortran-13' \
CFLAGS="$CFLAGS -Wno-error=format-security" \
./configure --prefix="/opt/heasoft" --build="$CHOST"
# parallel builds may fail
make -j1
}
package(){
local glibcver HEADAS
cd "heasoft-$pkgver/BUILD_DIR"
make -j1 DESTDIR="$pkgdir" install
glibcver=$(ldd --version | sed -n 's/ldd (GNU libc) //p')
HEADAS="/opt/heasoft/${CHOST}-libc${glibcver}"
install -d "$pkgdir/etc/profile.d"
cat > "$pkgdir/etc/profile.d/heasoft.sh" <<EOF
export HEADAS="${HEADAS}"
alias heainit='. "${HEADAS}/headas-init.sh"'
EOF
}
|