Skip to content
Snippets Groups Projects
Commit 7c6a502d authored by Klaus Rabbertz's avatar Klaus Rabbertz
Browse files

Update README & TODO; add little script to git tag a release

parent 9c676fff
Branches
Tags 2572
No related merge requests found
......@@ -106,13 +106,20 @@ git clone https://gitlab.ekp.kit.edu/qcd-public/fastNLO.git
# The fastNLO toolkit resides in the subdirectory v2.0/toolkit.
# To prepare this directory for installation the following command is needed:
autoreconf -i
# For this to work it is mandatory to have recent enough GNU autotools installed,
# i.e. autoconf, automake, and libtool.
# For this to work it is mandatory to have recent enough GNU autotools installed, i.e.
# autoconf for auto-conf, auto-header, auto-scan;
# automake for automake, aclocal;
# libtool for libtoolize
#
# If files related to these tools are not found in the usual system places as
# in the case of LCG environment setups, it might be necessary to set proper
# paths where these files can be found now, e.g.
csh: setenv ACLOCAL_PATH=/cvmfs/sft.cern.ch/lcg/releases/libtool/2.4.2-9ad34/x86_64-slc6-gcc62-opt/share/aclocal
sh: export ACLOCAL_PATH=/cvmfs/sft.cern.ch/lcg/releases/libtool/2.4.2-9ad34/x86_64-slc6-gcc62-opt/share/aclocal
#
# If macros still are not found like AX_CXX_COMPILE_STDCXX11, it might help to install
# the package autoconf-archive.
#
# After a successful reconfigure the configuration, make, and install steps should proceed
# as before.
#
......
......@@ -2,6 +2,9 @@
TODO list for fastNLO_toolkit (orderd by priority)
-----------------------------------------------------------------------
- Test installation with lgcenv environment
- Problem with zlib?
- Problem with HOPPET?
- Include stat. uncertainties into table
- Creator for Referenztabellen
- Streamline usage of logger.messagelevel, shout|cout, error|warn|silent etc. in speaker
......
# Create annotated tag with name given on command line.
# A tag message must be provided via the editor.
git tag -a $1
# Share git tag with other users by pushing to origin.
git push origin $1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment