@@ -54355,6 +54355,59 @@ to create header files and sources from protocol files.</Description>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>libcerf</Name>
|
||||
<Homepage>https://jugit.fz-juelich.de/mlz/libcerf/</Homepage>
|
||||
<Packager>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Packager>
|
||||
<License>custom</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>science.misc</PartOf>
|
||||
<Summary xml:lang="en">A self-contained numeric library that provides an efficient and accurate implementation of complex error functions, along with Dawson, Faddeeva, and Voigt functions.</Summary>
|
||||
<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="en">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>
|
||||
<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>
|
||||
<Archive type="targz" sha1sum="b0d4afb08eedc5b1b206c8028ac3efc7a3de9e58" name="libcerf-v1.13.tar.gz">https://jugit.fz-juelich.de/mlz/libcerf/-/archive/v1.13/libcerf-v1.13.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>science/misc/libcerf/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>libcerf</Name>
|
||||
<Summary xml:lang="en">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 xml:lang="en">Development files for libcerf</Summary>
|
||||
<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>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="1">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>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>cfitsio</Name>
|
||||
@@ -63065,6 +63118,7 @@ to create header files and sources from protocol files.</Description>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>elfutils-devel</Dependency>
|
||||
<Dependency>libcap-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>gsl-devel</Dependency>
|
||||
<Dependency>gmp-devel</Dependency>
|
||||
@@ -63078,6 +63132,7 @@ to create header files and sources from protocol files.</Description>
|
||||
<Name>gstreamer</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libcap</Dependency>
|
||||
<Dependency>elfutils</Dependency>
|
||||
<Dependency>libunwind</Dependency>
|
||||
</RuntimeDependencies>
|
||||
@@ -63111,6 +63166,7 @@ to create header files and sources from protocol files.</Description>
|
||||
<BuildType>emul32</BuildType>
|
||||
<BuildDependencies>
|
||||
<Dependency>glib2-32bit</Dependency>
|
||||
<Dependency>libcap-32bit</Dependency>
|
||||
<Dependency>elfutils-32bit</Dependency>
|
||||
<Dependency>libunwind-32bit</Dependency>
|
||||
</BuildDependencies>
|
||||
|
||||
@@ -1 +1 @@
|
||||
fd39c15401ca34e4de4faaba83cc6448dfcf7412
|
||||
f0786e3bfffa9dd7786cfe325883aea6c81a63fd
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
420f49a2d624aa6b84550a8c2616cacfdfea8307
|
||||
6c54fb36332344819f8495068419a907b6c0e4a1
|
||||
@@ -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*")
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user