cfitsio dependency for kstars
This commit is contained in:
@@ -99765,6 +99765,76 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>cfitsio</Name>
|
||||
<Homepage>http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>as-is</License>
|
||||
<IsA>library</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<PartOf>science.misc</PartOf>
|
||||
<Summary xml:lang="en">C and Fortran library for manipulating FITS files</Summary>
|
||||
<Summary xml:lang="tr">FITS dosyalarını düzenleyebilmek için gerekli C ve Fortran kütüphanesi</Summary>
|
||||
<Description xml:lang="en">CFITSIO provides simple high-level routines for reading and writing FITS files that insulate the programmer from the internal complexities of the FITS format.</Description>
|
||||
<Description xml:lang="tr">CFITSIO, FITS dosyalarını okumak/yazmak için programcıyı FITS formatının kendi karmaşıklığından soyutlayan yüksek seviyede fonksiyonlar sağlar.</Description>
|
||||
<Archive type="targz" sha1sum="48bd6389dcff3228508eec70384f2cae3a88ff32">http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/cfitsio3370.tar.gz</Archive>
|
||||
<SourceURI>science/misc/cfitsio/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>cfitsio</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>cfitsio-devel</Name>
|
||||
<Summary xml:lang="en">Development files for cfitsio</Summary>
|
||||
<Summary xml:lang="tr">cfitsio için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="4">cfitsio</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2015-11-18</Date>
|
||||
<Version>3.370</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-05-31</Date>
|
||||
<Version>3.360</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-01-20</Date>
|
||||
<Version>3.360</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-10-13</Date>
|
||||
<Version>3.310</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>libnova</Name>
|
||||
|
||||
@@ -1 +1 @@
|
||||
f8114c8ac2fd5477f067e892236f2174bd2535ee
|
||||
03dfb486e99da42b2d704f96b4df31fb3a29868c
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
711665572eda8ed9455b1fb9153d2df320c572ff
|
||||
68c917e5f3417c1a344f7cc70cd815812549e741
|
||||
@@ -0,0 +1,40 @@
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
WorkDir = "cfitsio"
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-fi")
|
||||
autotools.configure("--enable-reentrant")
|
||||
|
||||
def build():
|
||||
autotools.make("shared")
|
||||
|
||||
for t in ("fpack", "funpack", "imcopy", "fitscopy"):
|
||||
autotools.make(t)
|
||||
|
||||
pisitools.dosed("cfitsio.pc", "\\$\\{prefix\\}/include", "${prefix}/include/%s" % get.srcNAME())
|
||||
|
||||
def check():
|
||||
autotools.make("testprog")
|
||||
|
||||
def install():
|
||||
for t in ("fpack", "funpack", "imcopy", "fitscopy"):
|
||||
pisitools.dobin(t)
|
||||
|
||||
autotools.rawInstall("DESTDIR=%s LIBDIR=lib INCLUDEDIR=include/%s" % (get.installDIR(), get.srcNAME()))
|
||||
|
||||
pisitools.remove("/usr/lib/*.a")
|
||||
|
||||
pisitools.domove("/usr/lib/libcfitsio.so", "/usr/lib", "libcfitsio.so.0.0")
|
||||
pisitools.dosym("libcfitsio.so.0.0", "/usr/lib/libcfitsio.so.0")
|
||||
pisitools.dosym("libcfitsio.so.0.0", "/usr/lib/libcfitsio.so")
|
||||
|
||||
pisitools.dodoc("*.txt", "README")
|
||||
@@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>cfitsio</Name>
|
||||
<Homepage>http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>as-is</License>
|
||||
<IsA>library</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>C and Fortran library for manipulating FITS files</Summary>
|
||||
<Description>CFITSIO provides simple high-level routines for reading and writing FITS files that insulate the programmer from the internal complexities of the FITS format.</Description>
|
||||
<Archive sha1sum="48bd6389dcff3228508eec70384f2cae3a88ff32" type="targz">http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/cfitsio3370.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>cfitsio</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>cfitsio-devel</Name>
|
||||
<Summary>Development files for cfitsio</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">cfitsio</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2015-11-18</Date>
|
||||
<Version>3.370</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-05-31</Date>
|
||||
<Version>3.360</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-01-20</Date>
|
||||
<Version>3.360</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-10-13</Date>
|
||||
<Version>3.310</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>cfitsio</Name>
|
||||
<Summary xml:lang="tr">FITS dosyalarını düzenleyebilmek için gerekli C ve Fortran kütüphanesi</Summary>
|
||||
<Description xml:lang="tr">CFITSIO, FITS dosyalarını okumak/yazmak için programcıyı FITS formatının kendi karmaşıklığından soyutlayan yüksek seviyede fonksiyonlar sağlar.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>cfitsio-devel</Name>
|
||||
<Summary xml:lang="tr">cfitsio için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user