qd:new pisi rel

This commit is contained in:
blue-devil
2020-05-21 00:11:13 +03:00
parent 96614630b4
commit e2f5afcd83
3 changed files with 91 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
from pisi.actionsapi import shelltools
def setup():
autotools.configure("--enable-shared")
# 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("BSD*", "COPYING", "README*")
+51
View File
@@ -0,0 +1,51 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qd</Name>
<Homepage>https://www.davidhbailey.com/dhbsoftware/</Homepage>
<Packager>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>programming.misc</PartOf>
<License>BSD</License>
<IsA>library</IsA>
<IsA>app:console</IsA>
<Summary>C++/Fortran-90 double-double and quad-double library.</Summary>
<Description>A double-double and quad-double package for Fortran and C++.</Description>
<Archive sha1sum="2db7d7be67267a61c06bb6c863d06df486a155d1" type="targz">https://www.davidhbailey.com/dhbsoftware/qd-2.3.22.tar.gz</Archive>
</Source>
<Package>
<Name>qd</Name>
<Summary>C++/Fortran-90 double-double and quad-double library.</Summary>
<Files>
<Path fileType="data">/usr/share</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="execuatble">/usr/bin</Path>
<Path fileType="doc">/usr/share/doc/qd</Path>
</Files>
</Package>
<Package>
<Name>qd-devel</Name>
<Summary>Development files for qd</Summary>
<RuntimeDependencies>
<Dependency release="current">qd</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-05-20</Date>
<Version>2.3.22</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>qd</Name>
<Summary xml:lang="tr">C++/Fortran-90 double-double ve quad-double için C kitaplığı.</Summary>
<Description xml:lang="tr">qd, C++/Fortran-90 double-double ve quad-double için C kitaplığı sunar.</Description>
</Source>
<Package>
<Name>qd-devel</Name>
<Summary xml:lang="tr">qd için geliştirme dosyaları</Summary>
<Description xml:lang="tr">qd-devel, qd için geliştirme dosyalarını içerir.</Description>
</Package>
</PISI>