summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 128be79d9c685abaf0acc228643c610e1e0f8905 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
# Maintainer: Luis Sarmiento < Luis.Sarmiento-ala-nuclear.lu.se >
pkgname='geant4'
pkgver=10.7.0
_pkgver=10.07
pkgrel=1
pkgdesc="A simulation toolkit for particle physics interactions."
depends=('cmake>=3.8'
         'xerces-c>=3'
         'qt5-base'
         'glu'
         'openmotif'
         'soqt'
         'zlib'
        )
conflicts=('geant4_devel')
optdepends=('java-environment: for histogram visualizations and
analysis'
  'tcsh: for C Shell support'
  'python: for G4Python support'
  'geant4-abladata: Data files for nuclear shell effects in INCL/ABLA hadronic mode'
  'geant4-ensdfstatedata: Nuclei properties from the Evaluated Nuclear Structure Data Files'
  'geant4-incldata: Data files for proton and neutron density profiles'
  'geant4-ledata: Data files for low energy electromagnetic processes'
  'geant4-levelgammadata: Data files for photon evaporation'
  'geant4-neutronhpdata: Neutron data files with thermal cross sections'
  'geant4-particlexsdata: Data files for evaluated p, d, t, He3, He4 and gamma cross sections, replaces geant4-neutronxsdata'
  'geant4-piidata: Data files for shell ionisation cross sections'
  'geant4-radioactivedata: Data files for radioactive decay hadronic processes'
  'geant4-realsurfacedata: Data files for measured optical surface reflectance'
  'geant4-saiddata: Data files from evaluated cross-sections in SAID data-base'
)
url="http://geant4.cern.ch/"
arch=('x86_64')
license=('custom: http://geant4.cern.ch/license/')
options=('!emptydirs')
install="${pkgname}.install"
source=("http://cern.ch/geant4-data/releases/${pkgname}.${_pkgver}.tar.gz"
        "${pkgname}.install")
sha256sums=('776ea45230d26fffebf0cf7a342af5131135759a0f70e1b4a1a401f1d1eaad4a'
            '173be29c04cb4aae249cbb59a2fc01549150db6bca314aac9dd9e24c603d3f5b')

## Remove this if you want to keep an even smaller package
## No need to wait for compression when just installing it.
PKGEXT='.pkg.tar'

build() {

  [ -d ${srcdir}/build ] || mkdir ${srcdir}/build
  cd ${srcdir}/build

  # until SoXt fails to build because of coin, support for Invertor is droped
  env -i \
      QT_SELECT=5 \
      PATH=/usr/bin \
      cmake \
      -DCMAKE_INSTALL_PREFIX=/usr \
      -DGEANT4_BUILD_MULTITHREADED=ON \
      -DGEANT4_USE_G3TOG4=ON \
      -DGEANT4_USE_GDML=ON \
      -DGEANT4_USE_INVENTOR_QT=ON \
      -DGEANT4_USE_QT=ON \
      -DGEANT4_USE_OPENGL_X11=ON \
      -DGEANT4_USE_RAYTRACER_X11=ON \
      -DGEANT4_USE_XM=ON \
      -DGEANT4_USE_SYSTEM_ZLIB=ON \
      -DGEANT4_BUILD_CXXSTD=14 \
      -DGEANT4_BUILD_TLS_MODEL=global-dynamic \
      -DGEANT4_INSTALL_PACKAGE_CACHE=OFF \
      ../${pkgname}.${_pkgver}

  G4VERBOSE=1 make

}

package() {

  #Since the basic package does not include the data files, their
  #configuration should be removed from the configuration file. Data
  #files are also available on the AUR and the environment variables
  #are set automatically for you from the packages.

  msg "Removing 'wrongly' set environment variables"

  # Last revisited: 10.7
  # also in .install file.
  variables=(
      "G4ABLADATA" \
          "G4ENSDFSTATEDATA" \
          "G4INCLDATA" \
          "G4LEDATA" \
          "G4LEVELGAMMADATA" \
          "G4NEUTRONHPDATA" \
          "G4PARTICLEXSDATA" \
          "G4PIIDATA" \
          "G4RADIOACTIVEDATA" \
          "G4REALSURFACEDATA" \
          "G4SAIDXSDATA" \
          )

  for _varname in ${variables[*]}
  do
    sed -i "/${_varname}/d" ${srcdir}/build/InstallTreeFiles/geant4.sh
    sed -i "/${_varname}/d" ${srcdir}/build/InstallTreeFiles/geant4.csh
  done

  cd ${srcdir}/build
  make DESTDIR="${pkgdir}" install

  echo 'pushd /usr/bin &> /dev/null && source geant4.sh  && popd &> /dev/null' > ${srcdir}/geant4.profile.sh
  echo 'pushd /usr/bin >& /dev/null && source geant4.csh && popd >& /dev/null' > ${srcdir}/geant4.profile.csh
  install -d ${pkgdir}/etc/profile.d
  install -m755 ${srcdir}/geant4.profile.sh  ${pkgdir}/etc/profile.d/geant4.sh
  install -m755 ${srcdir}/geant4.profile.csh ${pkgdir}/etc/profile.d/geant4.csh
}

# All this is just a comment
echo ""
: <<'EOF'

 From: http://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/InstallationGuide/html/installguide.html#geant4-build-options
 Last revisited: 10.7

 |----------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+----------------|
 | option                           | default                                                                                                                                          | set to         |
 |----------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+----------------|
 | CMAKE_INSTALL_PREFIX             | /usr/local                                                                                                                                       | /usr           |
 | CMAKE_BUILD_TYPE                 | Release                                                                                                                                          |                |
 | GEANT4_BUILD_MULTITHREADED       | OFF                                                                                                                                              | ON             |
 | GEANT4_INSTALL_DATA              | OFF                                                                                                                                              |                |
 | GEANT4_INSTALL_DATADIR           | CMAKE_INSTALL_DATAROOTDIR                                                                                                                        |                |
 | GEANT4_USE_G3TOG4                | OFF                                                                                                                                              | ON             |
 | GEANT4_USE_GDML                  | OFF                                                                                                                                              | ON             |
 | GEANT4_USE_INVENTOR              | OFF                                                                                                                                              |                |
 | GEANT4_USE_INVENTOR_QT           | OFF                                                                                                                                              | ON             |
 | GEANT4_USE_OPENGL_WIN32          | OFF, Windows Only                                                                                                                                |                |
 | GEANT4_USE_OPENGL_X11            | OFF, Unix Only                                                                                                                                   | ON             |
 | GEANT4_USE_PYTHON                | OFF                                                                                                                                              | try this       |
 | GEANT4_USE_QT                    | OFF                                                                                                                                              | ON             |
 | GEANT4_USE_RAYTRACER_X11         | OFF, Unix only                                                                                                                                   | ON             |
 | GEANT4_USE_SYSTEM_CLHEP          | OFF                                                                                                                                              |                |
 | GEANT4_USE_SYSTEM_EXPAT          | ON                                                                                                                                               |                |
 | GEANT4_USE_SYSTEM_ZLIB           | OFF                                                                                                                                              | ON             |
 | GEANT4_USE_TBB                   | ON                                                                                                                                               |                |
 | GEANT4_USE_XM                    | OFF, Unix Only                                                                                                                                   | ON             |
 |----------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+----------------|
 | BUILD_SHARED_LIBS                | ON                                                                                                                                               |                |
 | BUILD_STATIC_LIBS                | OFF                                                                                                                                              |                |
 | CMAKE_INSTALL_BINDIR             | bin                                                                                                                                              |                |
 | CMAKE_INSTALL_INCLUDEDIR         | include                                                                                                                                          |                |
 | CMAKE_INSTALL_LIBDIR             | lib(+?SUFFIX)                                                                                                                                    |                |
 | CMAKE_INSTALL_PYTHONDIR          | CMAKE_INSTALL_LIBDIR/python3.<PYMINOR>/site-packages                                                                                             |                |
 | CMAKE_INSTALL_DATAROOTDIR        | share                                                                                                                                            |                |
 | GEANT4_INSTALL_DATA_TIMEOUT      | 1500                                                                                                                                             |                |
 | GEANT4_INSTALL_EXAMPLES          | ON                                                                                                                                               |                |
 | GEANT4_BUILD_CXXSTD              | 11 (UNIX), 17 (Windows)                                                                                                                          | 14             |
 | GEANT4_BUILD_MSVC_MP             | OFF, Windows Only                                                                                                                                |                |
 | GEANT4_BUILD_TLS_MODEL           | initial-exec                                                                                                                                     | global-dynamic |
 | GEANT4_BUILD_STORE_TRAJECTORY    | ON                                                                                                                                               |                |
 | GEANT4_BUILD_VERBOSE_CODE        | ON                                                                                                                                               |                |
 | GEANT4_BUILD_BUILTIN_BACKTRACE   | OFF                                                                                                                                              |                |
 | GEANT4_BUILD_PHP_AS_HP           | OFF                                                                                                                                              | what's this?   |
 | GEANT4_USE_SMARTSTACK            | OFF                                                                                                                                              | what's this?   |
 | GEANT4_USE_SYSTEM_PTL            | OFF                                                                                                                                              |                |
 | GEANT4_ENABLE_TESTING            | OFF                                                                                                                                              |                |
 | GEANT4_USE_NETWORKDAWN           | OFF, Unix Only                                                                                                                                   |                |
 | GEANT4_USE_NETWORKVRML           | OFF, Unix Only                                                                                                                                   |                |
 | GEANT4_USE_FREETYPE              | OFF                                                                                                                                              |                |
 | GEANT4_USE_HDF5                  | OFF                                                                                                                                              |                |
 | GEANT4_USE_USOLIDS               | OFF                                                                                                                                              |                |
 | GEANT4_USE_TIMEMORY              | OFF                                                                                                                                              |                |
 | GEANT4_INSTALL_PACKAGE_CACHE     | ON                                                                                                                                               | OFF            |
 | GEANT4_INSTALL_DATASETS_TENDL    | OFF                                                                                                                                              |                |
 | CMAKE_PREFIX_PATH                | OFF                                                                                                                                              |                |
 | GEANT4_USE_SYSTEM_CLHEP_GRANULAR | OFF                                                                                                                                              |                |
 |----------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+----------------|
 | CMAKE_CXX_FLAGS                  | -W -Wall -pedantic -Wno-non-virtual-dtor -Wno-long-long -Wwrite-strings -Wpointer-arith -Woverloaded-virtual -Wno-variadic-macros -Wshadow -pipe |                |
 |                                  | -ftls-model=initial-exec -pthread if  GEANT4_BUILD_MULTITHREADED=ON                                                                              |                |
 | CMAKE_CXX_FLAGS_RELEASE          | -O3 -DNDEBUG -fno-trapping-math -ftree-vectorize -fno-math-errno                                                                                 |                |
 | CMAKE_CXX_FLAGS_DEBUG            | -g                                                                                                                                               |                |
 | CMAKE_CXX_FLAGS_RELWITHDEBINFO   | -O2 -g                                                                                                                                           |                |
 |----------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+----------------|
EOF
echo ""