# Contributor: Luis Sarmiento < Luis.Sarmiento-ala-nuclear.lu.se > # # pkgname=go4 _Pkgname=Go4 pkgver=6.1.2 pkgrel=1 pkgdesc='Object-oriented system (GSI Object Oriented On-line Off-line system) based on ROOT' arch=('x86_64') makedepends=('cmake') depends=('root' 'qt5-webengine' 'hdf5') conflicts=('mbseventapi') url="https://www.gsi.de/en/work/research/experiment_electronics/data_processing/data_analysis/the_go4_home_page.htm" license=('GPL') source=("http://web-docs.gsi.de/~go4/download/go4-${pkgver}.tar.gz") sha256sums=('12312bc346f911c27cfd3b13e7b66e6e4c5f596029d339b5a6a1e9cd7cc70775') prepare() { unset GO4SYS } build() { [ -d ${srcdir}/build ] || mkdir ${srcdir}/build cd ${srcdir}/build ROOTSYS=/usr/lib/cmake/ROOT \ cmake \ -DCMAKE_INSTALL_PREFIX=/usr \ -DGO4_PLATFORM=Linux \ -DGO4_QTVERSION=Qt5 \ -Ddabc=ON \ -Dhdf5=ON \ ../go4-${pkgver} make } package() { #install the package cd ${srcdir}/build make DESTDIR="${pkgdir}" install #install the license install -Dm644 "${srcdir}/go4-${pkgver}/Go4License.txt" "$pkgdir/usr/share/licenses/go4/Go4License.txt" #install the desktop file echo " [Desktop Entry] Name=${_PKGNAME} Comment=${pkgdesc} Exec=go4 Icon=xchm-32 Terminal=false Type=Application Categories=Utility;Science; StartupNotify=false " > $srcdir/$pkgname.desktop install -Dm644 $srcdir/$pkgname.desktop $pkgdir/usr/share/applications/$pkgname.desktop install -d ${pkgdir}/etc/profile.d cat <<- EOF > ${srcdir}/go4.sh # source go4login script source /usr/bin/go4login # If ROOT_INCLUDE_PATH already exists, then add Go4 to it, otherwise do nothing export ROOT_INCLUDE_PATH=\${ROOT_INCLUDE_PATH:+\$ROOT_INCLUDE_PATH:/usr/include/go4} # if ROOT_INCLUDE_PATH does not exist, define it as the one from Go4, otherwise do nothing export ROOT_INCLUDE_PATH=\${ROOT_INCLUDE_PATH:-/usr/include/go4} EOF install -m755 ${srcdir}/go4.sh ${pkgdir}/etc/profile.d/go4.sh # Csh no longer supported. Go4 itself does not seem to support it. }