m4rie:new pisi rel

This commit is contained in:
blue-devil
2020-05-21 00:22:01 +03:00
parent d74116cddd
commit 830c57e6ef
3 changed files with 95 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#!/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():
autotools.autoreconf("-vif")
autotools.configure()
# fix unused direct dependency analysis
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def check():
autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("COPYING", "README*")
+55
View File
@@ -0,0 +1,55 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>m4rie</Name>
<Homepage>https://bitbucket.org/malb/m4rie</Homepage>
<Packager>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>science.misc</PartOf>
<License>GPLv2+</License>
<IsA>library</IsA>
<Summary>Algorithms for linear algebra over F2^e.</Summary>
<Description>M4RIE is a library for fast arithmetic with dense matrices over GF(2^e) for 2 ≤ e≤ 16. The name stems from the fact that is relies heavily on M4RI. M4RIE is available under the General Public License Version 2 or later (GPLv2+).</Description>
<Archive sha1sum="8c9f0409596e08e566abd80e955503ca40ac9651" type="targz">https://bitbucket.org/malb/m4rie/get/release-20200115.tar.gz</Archive>
<BuildDependencies>
<Dependency>m4ri-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>m4rie</Name>
<Summary>Algorithms for linear algebra over F2^e.</Summary>
<RuntimeDependencies>
<Dependency>m4ri</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc/m4rie</Path>
</Files>
</Package>
<Package>
<Name>m4rie-devel</Name>
<Summary>Development files for m4rie</Summary>
<RuntimeDependencies>
<Dependency release="current">m4rie</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-05-20</Date>
<Version>20200125</Version>
<Comment>First pisi release.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
</History>
</PISI>
+14
View File
@@ -0,0 +1,14 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>m4rie</Name>
<Summary xml:lang="tr">F2^e üzerinden lineer cebir için algoritmalar.</Summary>
<Description xml:lang="tr">m4rie, F2^e üzerinden lineer cebir için algoritmalar sunar.</Description>
</Source>
<Package>
<Name>m4rie-devel</Name>
<Summary xml:lang="tr">m4rie için geliştirme dosyaları</Summary>
<Description xml:lang="tr">m4rie-devel, m4rie için geliştirme dosyalarını içerir.</Description>
</Package>
</PISI>