Magellan Linux

Contents of /smage/trunk/core/isl/isl-0.24-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 15663 - (show annotations) (download)
Tue Dec 20 21:57:54 2022 UTC (16 months, 1 week ago) by niro
File size: 774 byte(s)
isl-0.24
1 # $Id$
2
3 PNAME="isl"
4 PVER="0.24"
5 PBUILD="r1"
6
7 PCAT="dev-libs"
8
9 DESCRIPTION="Library for manipulating sets and relations of integer points bounded by linear constraints."
10 HOMEPAGE="https://libisl.sourceforge.io"
11
12 DEPEND=">= dev-libs/gmp-6.2"
13
14 SRCFILE="${PNAME}-${PVER}.tar.bz2"
15 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
16
17 sminclude mtools mbuild
18
19 SRC_URI=(
20 https://libisl.sourceforge.io/${SRCFILE}
21 mirror://${PNAME}/${SRCFILE}
22 )
23
24 UP2DATE="updatecmd ${HOMEPAGE} | highesttarball"
25
26 src_install()
27 {
28 cd ${SRCDIR}
29
30 mmake DESTDIR=${BINDIR} install || die
31
32 # move gdb scripts to a proper location and to pretty-print ldconfig
33 minstalldir /usr/share/gdb/auto-load/usr/$(mlibdir) || die
34 mmove ${BINDIR}/usr/$(mlibdir)/libisl*gdb.py* /usr/share/gdb/auto-load/usr/$(mlibdir)/ || die
35 }