83 lines
2.2 KiB
RPMSpec
83 lines
2.2 KiB
RPMSpec
|
#
|
||
|
# spec file for package isl
|
||
|
#
|
||
|
# Copyright (c) 2023 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 islsover 23
|
||
|
Name: isl
|
||
|
Version: 0.26
|
||
|
Release: 0
|
||
|
Summary: Integer Set Library
|
||
|
License: MIT
|
||
|
Group: Development/Languages/C and C++
|
||
|
URL: https://libisl.sourceforge.io/
|
||
|
Source: https://libisl.sourceforge.io/isl-%{version}.tar.xz
|
||
|
Source1: baselibs.conf
|
||
|
BuildRequires: gmp-devel
|
||
|
BuildRequires: pkgconfig
|
||
|
|
||
|
%description
|
||
|
ISL is a library for manipulating sets and relations of integer points
|
||
|
bounded by linear constraints.
|
||
|
It is used by Cloog and the GCC Graphite optimization framework.
|
||
|
|
||
|
%package devel
|
||
|
Summary: Development tools for ISL
|
||
|
Group: Development/Languages/C and C++
|
||
|
Requires: libisl%{islsover} = %{version}-%{release}
|
||
|
|
||
|
%description devel
|
||
|
Development tools and headers for the ISL.
|
||
|
|
||
|
%package -n libisl%{islsover}
|
||
|
Summary: The ISL shared library
|
||
|
Group: System/Libraries
|
||
|
|
||
|
%description -n libisl%{islsover}
|
||
|
The shared library for the ISL.
|
||
|
|
||
|
ISL is a library for manipulating sets and relations of integer points
|
||
|
bounded by linear constraints.
|
||
|
|
||
|
%prep
|
||
|
%setup -q
|
||
|
|
||
|
%build
|
||
|
export CFLAGS_FOR_BUILD="%{optflags}"
|
||
|
%configure --disable-static
|
||
|
%make_build
|
||
|
|
||
|
%check
|
||
|
%make_build check
|
||
|
|
||
|
%install
|
||
|
%make_install
|
||
|
find %{buildroot} -type f -name "*.la" -delete -print
|
||
|
rm -f %{buildroot}%{_libdir}/libisl.so.*-gdb.py
|
||
|
|
||
|
%post -n libisl%{islsover} -p /sbin/ldconfig
|
||
|
%postun -n libisl%{islsover} -p /sbin/ldconfig
|
||
|
|
||
|
%files -n libisl%{islsover}
|
||
|
%{_libdir}/libisl.so.%{islsover}*
|
||
|
|
||
|
%files devel
|
||
|
%{_includedir}/isl
|
||
|
%{_libdir}/libisl.so
|
||
|
%{_libdir}/pkgconfig/%{name}.pc
|
||
|
|
||
|
%changelog
|