This commit is contained in:
Ertuğrul Erata
2015-06-24 09:55:27 +03:00
parent a01988baf4
commit 2e402d5af7
10 changed files with 2367 additions and 865 deletions
+29
View File
@@ -0,0 +1,29 @@
#!/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 shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import libtools
from pisi.actionsapi import get
def setup():
autotools.autoreconf("-fi")
libtools.libtoolize("--force --install")
autotools.configure("--enable-libjpeg \
--enable-opengl \
--enable-shared \
--disable-static")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("NEWS", "README", "doc/*")
+114
View File
@@ -0,0 +1,114 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>jasper</Name>
<Homepage>http://www.ece.uvic.ca/~mdadams/jasper</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<IsA>app:console</IsA>
<IsA>library</IsA>
<Summary>Software implementation of JPEG-2000 Part 1</Summary>
<Description>JasPer is a software-based implementation of the codec specified in the JPEG-2000 Part-1 standard (ISO/IEC 15444-1:2000).</Description>
<Archive sha1sum="9c5735f773922e580bf98c7c7dfda9bbed4c5191" type="zip">http://www.ece.uvic.ca/~mdadams/jasper/software/jasper-1.900.1.zip</Archive>
<BuildDependencies>
<Dependency>freeglut-devel</Dependency>
<Dependency>mesa-devel</Dependency>
<Dependency>mesa-glu-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1" compressionType="bz2">jasper-1.900.1-fixes-20081208.patch.bz2</Patch>
</Patches>
</Source>
<Package>
<Name>jasper</Name>
<RuntimeDependencies>
<Dependency>freeglut</Dependency>
<Dependency>mesa</Dependency>
<Dependency>mesa-glu</Dependency>
<Dependency>libjpeg-turbo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<Package>
<Name>jasper-docs</Name>
<RuntimeDependencies>
<Dependency>jasper</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>jasper-devel</Name>
<Summary>Development files for jasper</Summary>
<RuntimeDependencies>
<Dependency release="current">jasper</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<Package>
<Name>jasper-32bit</Name>
<PartOf>emul32</PartOf>
<Summary>32-bit shared libraries for jasper</Summary>
<BuildType>emul32</BuildType>
<BuildDependencies>
<Dependency>mesa-32bit</Dependency>
<Dependency>freeglut-32bit</Dependency>
<Dependency>libjpeg-turbo-32bit</Dependency>
</BuildDependencies>
<RuntimeDependencies>
<Dependency release="current">jasper</Dependency>
<Dependency>mesa-32bit</Dependency>
<Dependency>freeglut-32bit</Dependency>
<Dependency>libjpeg-turbo-32bit</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib32</Path>
</Files>
</Package>
<History>
<Update release="4">
<Date>2014-05-21</Date>
<Version>1.900.1</Version>
<Comment>Rebuild</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2014-02-20</Date>
<Version>1.900.1</Version>
<Comment>Rebuild</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
<Update release="2">
<Date>2013-08-17</Date>
<Version>1.900.1</Version>
<Comment>Release bump.</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2011-07-07</Date>
<Version>1.900.1</Version>
<Comment>First release</Comment>
<Name>Anıl Özbek</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,17 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>jasper</Name>
<Summary xml:lang="tr">JasPer JPEG-2000 Part-1 codec standardı üzerinde konumlandırılmış bir yazılım</Summary>
</Source>
<Package>
<Name>jasper-devel</Name>
<Summary xml:lang="tr">jasper için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>jasper-32bit</Name>
<Summary xml:lang="tr">jasper için 32-bit paylaşımlı kitaplıklar</Summary>
</Package>
</PISI>