123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- Summary: Integer point manipulation library
- Name: isl
- Version: 0.14.1
- License: MIT
- Group: System Environment/Libraries
- URL: http://isl.gforge.inria.fr/
- %global libmajor 13
- %global libversion %{libmajor}.1.1
- # Please set buildid below when building a private version of this rpm to
- # differentiate it from the stock rpm.
- #
- # % global buildid .local
- Release: 1%{?_dist_release}
- BuildRequires: gmp-devel
- BuildRequires: pkgconfig
- Source0: http://isl.gforge.inria.fr/isl-%{version}.tar.xz
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: Takemikaduchi
- %description
- isl is a library for manipulating sets and relations of integer points
- bounded by linear constraints. Supported operations on sets include
- intersection, union, set difference, emptiness check, convex hull,
- (integer) affine hull, integer projection, computing the lexicographic
- minimum using parametric integer programming, coalescing and parametric
- vertex enumeration. It also includes an ILP solver based on generalized
- basis reduction, transitive closures on maps (which may encode infinite
- graphs), dependence analysis and bounds on piecewise step-polynomials.
- %package devel
- Summary: Development for building integer point manipulation library
- Requires: isl == %{version}-%{release}
- Requires: gmp-devel
- Group: Development/Libraries
- %description devel
- isl is a library for manipulating sets and relations of integer points
- bounded by linear constraints. Supported operations on sets include
- intersection, union, set difference, emptiness check, convex hull,
- (integer) affine hull, integer projection, computing the lexicographic
- minimum using parametric integer programming, coalescing and parametric
- vertex enumeration. It also includes an ILP solver based on generalized
- basis reduction, transitive closures on maps (which may encode infinite
- graphs), dependence analysis and bounds on piecewise step-polynomials.
- %prep
- %setup -q
- %build
- %configure
- make %{?_smp_mflags} V=1
- %install
- %make_install INSTALL="install -p"
- rm -f %{buildroot}/%{_libdir}/libisl.a
- rm -f %{buildroot}/%{_libdir}/libisl.la
- mkdir -p %{buildroot}/%{_datadir}
- %global gdbprettydir %{_datadir}/gdb/auto-load/%{_libdir}
- mkdir -p %{buildroot}/%{gdbprettydir}
- mv %{buildroot}/%{_libdir}/*-gdb.py* %{buildroot}/%{gdbprettydir}
- %check
- make check
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %files
- %{_libdir}/libisl.so.%{libmajor}
- %{_libdir}/libisl.so.%{libversion}
- %{gdbprettydir}/*
- %doc AUTHORS ChangeLog LICENSE README
- %files devel
- %{_includedir}/*
- %{_libdir}/libisl.so
- %{_libdir}/pkgconfig/isl.pc
- %doc doc/manual.pdf
- %changelog
- * Sat Jun 25 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.14.1-1
- - initial build for Vine Linux
- * Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
- * Mon Jan 5 2015 David Howells <dhowells@redhat.com> - 0.14-3
- - Initial packaging.
|