libcerf:first pisi rel

This commit is contained in:
blue-devil
2020-05-23 00:47:38 +03:00
parent 26bdd3ca78
commit 42458caf79
3 changed files with 94 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#!/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 pisitools
from pisi.actionsapi import cmaketools
from pisi.actionsapi import shelltools
def setup():
shelltools.makedirs("build")
shelltools.cd("build")
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release", sourceDir="..")
def build():
shelltools.cd("build")
cmaketools.make()
def install():
shelltools.cd("build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
shelltools.cd("..")
pisitools.dodoc("COPYING", "README*")
+53
View File
@@ -0,0 +1,53 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libcerf</Name>
<Homepage>https://jugit.fz-juelich.de/mlz/libcerf/</Homepage>
<Packager>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>science.misc</PartOf>
<License>custom</License>
<IsA>library</IsA>
<Summary>A self-contained numeric library that provides an efficient and accurate implementation of complex error functions, along with Dawson, Faddeeva, and Voigt functions.</Summary>
<Description>libcerf provides a self-contained numeric library that provides an efficient and accurate implementation of complex error functions, along with Dawson, Faddeeva, and Voigt functions.</Description>
<Archive sha1sum="b0d4afb08eedc5b1b206c8028ac3efc7a3de9e58" type="targz">https://jugit.fz-juelich.de/mlz/libcerf/-/archive/v1.13/libcerf-v1.13.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libcerf</Name>
<Summary>A self-contained numeric library that provides an efficient and accurate implementation of complex error functions, along with Dawson, Faddeeva, and Voigt functions.</Summary>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc/libcerf</Path>
</Files>
</Package>
<Package>
<Name>libcerf-devel</Name>
<Summary>Development files for libcerf</Summary>
<RuntimeDependencies>
<Dependency release="current">libcerf</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.13</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>libcerf</Name>
<Summary xml:lang="tr">Dawson, Faddeeva, ve Voigt yordamları ile beraber karmaşık hata yordamlarının kesin ve verimli bir uygulaması olan bağımsız sayısal kitaplık.</Summary>
<Description xml:lang="tr">libcerf, Dawson, Faddeeva, ve Voigt yordamları ile beraber karmaşık hata yordamlarının kesin ve verimli bir uygulaması olan bağımsız sayısal kitaplık sunar.</Description>
</Source>
<Package>
<Name>libcerf-devel</Name>
<Summary xml:lang="tr">libcerf için geliştirme dosyaları</Summary>
<Description xml:lang="tr">libcerf-devel, libcerf için geliştirme dosyalarını içerir.</Description>
</Package>
</PISI>