gf2x:new pisi rel

This commit is contained in:
blue-devil
2020-05-21 01:00:10 +03:00
parent 58f16f1357
commit 6a1bbb7ed0
3 changed files with 96 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():
pisitools.cflags.add("-msse2")
autotools.configure("--enable-sse2 --disable-pclmul")
# fix unused direct dependency analysis
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def check():
autotools.make("-k check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("COPYING*", "README*")
+56
View File
@@ -0,0 +1,56 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gf2x</Name>
<Homepage>https://gforge.inria.fr/projects/gf2x/</Homepage>
<Packager>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>science.misc</PartOf>
<License>GPL</License>
<License>LGPL</License>
<IsA>library</IsA>
<Summary>A library for multiplying polynomials over the binary field.</Summary>
<Description>gf2x is a library for multiplying polynomials over the binary field.</Description>
<Archive sha1sum="1b9c7e14031afc5488b9aa27f5501f78c90f00b4" type="targz">https://gforge.inria.fr/frs/download.php/file/38243/gf2x-1.3.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>libgcc</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>gf2x</Name>
<Summary>A library for multiplying polynomials over the binary field.</Summary>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc/gf2x</Path>
</Files>
</Package>
<Package>
<Name>gf2x-devel</Name>
<Summary>Development files for g2fx</Summary>
<RuntimeDependencies>
<Dependency release="current">gf2x</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>1.3.0</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>gf2x</Name>
<Summary xml:lang="tr">İkilik alan üzerinden polinom çarpması yapabilen bir C kitaplığı.</Summary>
<Description xml:lang="tr">gf2x, ikilik alan üzerinden polinom çarpması yapabilen bir C kitaplığı sunar.</Description>
</Source>
<Package>
<Name>gf2x-devel</Name>
<Summary xml:lang="tr">gf2x için geliştirme dosyaları</Summary>
<Description xml:lang="tr">gf2x-devel, gf2x için geliştirme dosyalarını içerir.</Description>
</Package>
</PISI>