cauchy: new package for calligra, calligra: rebuild

This commit is contained in:
suvari
2021-11-30 22:12:47 +03:00
parent 5ac3750de9
commit a5265b26e7
9 changed files with 299 additions and 32 deletions
+33
View File
@@ -0,0 +1,33 @@
#!/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 cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
def setup():
shelltools.makedirs("build")
shelltools.cd("build")
cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr", sourceDir="..")
def build():
shelltools.makedirs("build")
shelltools.cd("build")
cmaketools.make()
def install():
shelltools.makedirs("build")
shelltools.cd("build")
cmaketools.rawInstall('DESTDIR="%s"' % get.installDIR())
shelltools.cd("..")
pisitools.dodoc("COPYING")
+58
View File
@@ -0,0 +1,58 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>cauchy</Name>
<Homepage>https://bitbucket.org/cyrille/cauchy</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<IsA>library</IsA>
<Summary>A library for transforming Matlab/Octave files to C++ (with Eigen) and Matlab</Summary>
<Description>A library for transforming Matlab/Octave files to C++ (with Eigen) and Matlab</Description>
<Archive sha1sum="d26f5d72a8c26cbc6b3fcd7cda4d5ef1a2f3f793" type="tarbz2">https://sourceforge.net/projects/pisilinux/files/source/cauchy-0.9.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>eigen3</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>cauchy</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/libCauchy.so*</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib/libm2mml.so*</Path>
<Path fileType="library">/usr/lib/libCauchyXUnit.so*</Path>
</Files>
</Package>
<Package>
<Name>cauchy-devel</Name>
<Summary>Development files for cauchy</Summary>
<RuntimeDependencies>
<Dependency release="current">cauchy</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<!-- <Path fileType="data">/usr/lib/pkgconfig</Path> -->
</Files>
</Package>
<History>
<Update release="1">
<Date>2021-11-30</Date>
<Version>0.9.0</Version>
<Comment>First release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
</History>
</PISI>
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>cauchy</Name>
<Summary xml:lang="tr">Matlab/Octave dosyalarını C++ (Eigen ile) ve Matlab'a dönüştürmek için bir kitaplık</Summary>
<Description xml:lang="tr">Matlab/Octave dosyalarını C++ (Eigen ile) ve Matlab'a dönüştürmek için bir kitaplık</Description>
</Source>
<Package>
<Name>cauchy-devel</Name>
<Summary xml:lang="tr">cauchy için geliştirme başlıkları</Summary>
</Package>
</PISI>