diff --git a/science/misc/iml/actions.py b/science/misc/iml/actions.py new file mode 100644 index 0000000000..58416d7abc --- /dev/null +++ b/science/misc/iml/actions.py @@ -0,0 +1,24 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import get +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools + +def setup(): + # suppress compiler warnings + pisitools.cflags.add("-Wno-unused-result") + autotools.configure("--enable-shared --with-cblas=-lcblas") + + # fix unused direct dependency analysis + pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + pisitools.dodoc("COPYING", "README*") \ No newline at end of file diff --git a/science/misc/iml/pspec.xml b/science/misc/iml/pspec.xml new file mode 100644 index 0000000000..5277f3011e --- /dev/null +++ b/science/misc/iml/pspec.xml @@ -0,0 +1,57 @@ + + + + + iml + https://cs.uwaterloo.ca/~astorjoh/iml.html + + Blue Devil + bluedevil@sctzine.com + + science.misc + GPLv2+ + library + IML - Integer Matrix Library. + IML is a free library of C source code which implements algorithms for computing exact solutions to dense systems of linear equations over the integers. + http://www.cs.uwaterloo.ca/~astorjoh/iml-1.0.5.tar.bz2 + + gmp-devel + cblas-devel + + + + + iml + IML - Integer Matrix Library. + + gmp + cblas + + + /usr/share + /usr/lib + /usr/share/doc/iml + + + + + iml-devel + Development files for iml + + iml + + + /usr/include + + + + + + 2020-05-20 + 1.0.5 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + \ No newline at end of file diff --git a/science/misc/iml/translations.xml b/science/misc/iml/translations.xml new file mode 100644 index 0000000000..c496b76fd1 --- /dev/null +++ b/science/misc/iml/translations.xml @@ -0,0 +1,14 @@ + + + + iml + Tamsayı matris algoritmaları C kitaplığı. + iml, tamsayı matris algoritmaları C kitaplığı sunar. + + + + iml-devel + iml için geliştirme dosyaları + iml-devel, iml için geliştirme dosyalarını içerir. + + \ No newline at end of file