Data files for geant4 OBS-URL: https://build.opensuse.org/request/show/827335 OBS-URL: https://build.opensuse.org/package/show/science/geant4-data-G4PII?expand=0&rev=1
66 lines
2.0 KiB
RPMSpec
66 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package geant4-data-G4PII
|
|
#
|
|
# Copyright (c) 2020 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define srcname G4PII
|
|
%define confvar G4PIIDATA
|
|
Name: geant4-data-%{srcname}
|
|
Version: 1.3
|
|
Release: 0
|
|
Summary: Geant4 data files for shell ionisation cross-sections
|
|
License: BSD-4-Clause
|
|
URL: https://geant4.web.cern.ch/
|
|
Source: http://geant4-data.web.cern.ch/geant4-data/datasets/%{srcname}.%{version}.tar.gz
|
|
BuildRequires: fdupes
|
|
BuildRequires: geant4-devel
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
This package provides a data set of shell ionisation cross-sections for use by
|
|
GEANT4.
|
|
|
|
%prep
|
|
%setup -q -c %{name}-%{version}
|
|
|
|
%build
|
|
|
|
%install
|
|
%geant4_install_data
|
|
|
|
# REMOVE README FILES TO BE INSTALLED USING %%doc
|
|
find %{buildroot}%{geant4datadir}/ -name "README*" -delete -print
|
|
|
|
# EXPORT VARIABLES TO SYSTEMWIDE profile.d
|
|
mkdir -p %{buildroot}%{_sysconfdir}/profile.d
|
|
cat << EOF | tee %{buildroot}%{_sysconfdir}/profile.d/%{srcname}.sh
|
|
export %{confvar}=%{geant4datadir}/%{srcname}%{version}
|
|
EOF
|
|
|
|
cat << EOF | tee %{buildroot}%{_sysconfdir}/profile.d/%{srcname}.csh
|
|
setenv %{confvar} %{geant4datadir}/%{srcname}%{version}
|
|
EOF
|
|
|
|
%fdupes %{buildroot}/%{geant4datadir}
|
|
|
|
%files
|
|
%doc */documentation.pdf
|
|
%config %{_sysconfdir}/profile.d/%{srcname}.sh
|
|
%config %{_sysconfdir}/profile.d/%{srcname}.csh
|
|
%{geant4datadir}/%{srcname}%{version}/
|
|
|
|
%changelog
|