Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions aligeno2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ requires:
- pythia
- ThePEG
- Rivet
- SHERPA
- lhapdf-pdfsets
- JETSCAPE
- CRMC
Expand Down
5 changes: 3 additions & 2 deletions mpfr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ build_requires:
- alibuild-recipe-tools
---
#!/bin/sh
rsync -a --delete --exclude '**/.git' $SOURCEDIR/ ./
perl -p -i -e 's/ doc / /' Makefile.am
rsync -a --chmod=ug=rwX --delete --exclude .git --delete-excluded $SOURCEDIR/ .
sed -i.bak -e 's/ doc / /' Makefile.am
rm *.bak
autoreconf -ivf

./configure --prefix=$INSTALLROOT \
Expand Down
2 changes: 1 addition & 1 deletion openloops.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ build_requires:
- alibuild-recipe-tools
---
#!/bin/bash -e
rsync -a --delete --exclude '**/.git' --delete-excluded "$SOURCEDIR/" .
rsync -a --chmod=ug=rwX --delete --exclude .git --delete-excluded "$SOURCEDIR/" .

unset HTTP_PROXY # unset this to build on slc6 system

Expand Down
7 changes: 5 additions & 2 deletions sherpa.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ requires:
- lhapdf-pdfsets
- fastjet
- pythia
- sqlite
build_requires:
- "autotools:(slc6|slc7)"
- cgal
Expand All @@ -23,12 +24,14 @@ build_requires:
# When using the official repo the .git files are needed as Git_Info.C
# is generated and used during the build process, which fails in case
# we would not include the .git directory
rsync -a $SOURCEDIR/ ./
rsync -a --chmod=ug=rwX --exclude .git --delete-excluded $SOURCEDIR/ ./

# Exclude building Manual from Makefile.am
sed -i.bak /Manual/d Makefile.am
rm -f Makefile.am.bak

[[ "X$SQLITE_ROOT" = X ]] && SQLITE_ROOT=$(brew --prefix sqlite)

autoreconf -ivf

# SHERPA's configure uses wget which might not be there
Expand All @@ -40,7 +43,7 @@ export PATH="$PWD/fakewget:$PATH"

export LDFLAGS="$LDFLAGS -L$CGAL_ROOT/lib -L$GMP_ROOT/lib"
./configure --prefix=$INSTALLROOT \
--with-sqlite3=install \
--with-sqlite3=$SQLITE_ROOT \
--enable-hepmc2=$HEPMC_ROOT \
--enable-hepmc3=$HEPMC3_ROOT \
--enable-lhapdf=$LHAPDF_ROOT \
Expand Down