glpk/glpk.spec

127 lines
3.5 KiB
RPMSpec
Raw Normal View History

#
# spec file for package glpk
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# 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/
#
Name: glpk
Version: 4.52
Release: 0
%define libmaj 35
Summary: GNU Linear Programming Kit
License: GPL-3.0
Group: Development/Libraries/C and C++
Url: http://www.gnu.org/software/glpk/glpk.html
Source: %{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: ghostscript
BuildRequires: texlive
%description
The GLPK package is intended for solving large-scale linear
programming, mixed integer programming, and other related problems. It
is a set of routines written in ANSI C and organized in the form of a
callable library.
%package devel
Summary: GNU Linear Programming Kit
Group: Development/Libraries/C and C++
Requires: libglpk%{libmaj} = %{version}
%description devel
The GLPK package is intended for solving large-scale linear
programming, mixed integer programming, and other related problems. It
is a set of routines written in ANSI C and organized in the form of a
callable library.
%package -n libglpk%{libmaj}
Summary: GNU Linear Programming Kit
Group: Development/Libraries/C and C++
%description -n libglpk%{libmaj}
The GLPK package is intended for solving large-scale linear
programming, mixed integer programming, and other related problems. It
is a set of routines written in ANSI C and organized in the form of a
callable library.
%package doc
Summary: GNU Linear Programming Kit
Group: Development/Libraries/C and C++
%if 0%{?suse_version} >= 1120 || 0%{?fedora_version}
BuildArch: noarch
%endif
%description doc
The GLPK package is intended for solving large-scale linear
programming, mixed integer programming, and other related problems. It
is a set of routines written in ANSI C and organized in the form of a
callable library.
%prep
%setup -q
%build
CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" %configure --enable-static=no
make %{?_smp_mflags}
%install
make install DESTDIR="%buildroot"
rm $RPM_BUILD_ROOT%{_libdir}/*.la
mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name}/examples
cp examples/*.{mod,c,dat,mps,lp} $RPM_BUILD_ROOT%{_docdir}/%{name}/examples
mkdir $RPM_BUILD_ROOT%{_docdir}/%{name}/doc
cp doc/{*.txt,*.pdf} $RPM_BUILD_ROOT%{_docdir}/%{name}/doc
cp {AUTHORS,ChangeLog,COPYING,NEWS,README} $RPM_BUILD_ROOT%{_docdir}/%{name}
%post -n libglpk%{libmaj} -p /sbin/ldconfig
%postun -n libglpk%{libmaj} -p /sbin/ldconfig
%files
%defattr(-,root,root)
%dir %{_docdir}/%{name}
%{_docdir}/%{name}/AUTHORS
%{_docdir}/%{name}/ChangeLog
%{_docdir}/%{name}/COPYING
%{_docdir}/%{name}/NEWS
%{_docdir}/%{name}/README
%{_bindir}/glpsol
%files -n libglpk%{libmaj}
%defattr(-,root,root)
%{_libdir}/*.so.*
%files devel
%defattr(-,root,root)
%{_includedir}/*
%{_libdir}/*.so
%files doc
%defattr(-,root,root)
%dir %{_docdir}/%{name}
%{_docdir}/%{name}/doc
%{_docdir}/%{name}/examples
%changelog