forked from alisw/alidist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmpfr.sh
37 lines (32 loc) · 854 Bytes
/
mpfr.sh
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
package: MPFR
version: v3.1.3
tag: v3.1.3
source: https://github.com/alisw/MPFR.git
build_requires:
- "autotools:(slc6|slc7)"
- GMP
- alibuild-recipe-tools
---
#!/bin/sh
rsync -a --delete --exclude '**/.git' $SOURCEDIR/ ./
perl -p -i -e 's/ doc / /' Makefile.am
autoreconf -ivf
./configure --prefix=$INSTALLROOT \
--disable-shared \
--enable-static \
--with-gmp=$GMP_ROOT \
--with-pic
make ${JOBS+-j $JOBS}
make install
rm -f $INSTALLROOT/lib/*.la
# Modulefile
MODULEDIR="$INSTALLROOT/etc/modulefiles"
MODULEFILE="$MODULEDIR/$PKGNAME"
mkdir -p "$MODULEDIR"
alibuild-generate-module > "$MODULEFILE"
cat >> "$MODULEFILE" <<EoF
# Our environment
set MPFR_ROOT \$::env(BASEDIR)/$PKGNAME/\$version
setenv MPFR_ROOT \$MPFR_ROOT
prepend-path LD_LIBRARY_PATH \$MPFR_ROOT/lib
EoF