File votca-tools.spec of Package votca-tools
#
# spec file for package votca-tools
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2013-2017 Christoph Junghans
#
# 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 http://bugs.opensuse.org/
#
#
# Originally written by Jussi Lehtola <jussilehtola@fedoraproject.org>
# Fixed for multi-distro build by Klaus Kaempf <kkaempf@suse.de>
#
Name: votca-tools
Version: 1.4.1
%define uversion 1.4.1
Release: 0
Summary: VOTCA tools library
Group: Productivity/Scientific/Chemistry
License: Apache-2.0
URL: http://www.votca.org
Source0: https://github.com/votca/tools/archive/v%{uversion}.tar.gz#/%{name}-%{uversion}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: gcc-c++
BuildRequires: pkg-config
BuildRequires: libexpat-devel
BuildRequires: pkgconfig(sqlite3)
BuildRequires: pkgconfig(fftw3)
BuildRequires: pkgconfig(gsl)
%if 0%{?suse_version} > 1325
BuildRequires: libboost_filesystem-devel
BuildRequires: libboost_program_options-devel
%else
BuildRequires: boost-devel >= 1.39.0
%endif
BuildRequires: cmake
BuildRequires: txt2tags
%description
Versatile Object-oriented Toolkit for Coarse-graining Applications (VOTCA) is
a package to reduce the amount of routine work when doing systematic
coarse-graining of various systems. The core is written in C++.
%package -n libvotca_tools4
Summary: VOTCA tools library
Group: System/Libraries
%description -n libvotca_tools4
Versatile Object-oriented Toolkit for Coarse-graining Applications (VOTCA) is
a package to reduce the amount of routine work when doing systematic
coarse-graining of various systems. The core is written in C++.
This package contains the basic tools library of VOTCA package.
%package devel
Summary: Development headers and libraries for votca-tools
Group: Development/Libraries/C and C++
Requires: libvotca_tools4 = %{version}
Requires: %{name} = %{version}
%description devel
Versatile Object-oriented Toolkit for Coarse-graining Applications (VOTCA) is
a package to reduce the amount of routine work when doing systematic
coarse-graining of various systems. The core is written in C++.
This package contains development headers and libraries for votca-tools.
%prep
%setup -n tools-%{uversion} -q
# Avoid unnecessary rebuilds of the package
FAKE_BUILDDATE=$(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%b %%e %%Y')
FAKE_BUILDTIME=$(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%H:%%M:%%S')
sed -i -e "s/__DATE__/\"$FAKE_BUILDDATE\"/" -e "s/__TIME__/\"$FAKE_BUILDTIME\"/" src/libtools/version{,_nb}.cc
%build
%{cmake} -DWITH_RC_FILES=OFF -DLIB=%{_lib} -DCMAKE_SKIP_RPATH=OFF
make %{?_smp_mflags}
%install
make -C build install DESTDIR=%{buildroot}
%files
%defattr(-,root,root,-)
%{_bindir}/votca_*
%{_mandir}/man1/*
%post -n libvotca_tools4 -p /sbin/ldconfig
%postun -n libvotca_tools4 -p /sbin/ldconfig
%files -n libvotca_tools4
%defattr(-,root,root,-)
%doc LICENSE NOTICE
%{_libdir}/libvotca_tools.so.*
%{_mandir}/man7/*
%files devel
%defattr(-,root,root,-)
%{_includedir}/votca/
%{_libdir}/libvotca_tools.so
%{_libdir}/pkgconfig/libvotca_tools.pc
%changelog