openjpeg2-2.3.0:First release

This commit is contained in:
Rmys
2018-03-30 15:03:15 +03:00
parent 99f2f2a4fd
commit be134082b8
7 changed files with 204 additions and 7 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/usr/bin/env 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 cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_DOC=on")
def build():
cmaketools.make()
def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS*", "CHANGELOG*", "NEWS*", "README*")
+65
View File
@@ -0,0 +1,65 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>openjpeg2</Name>
<Homepage>https://github.com/uclouvain/openjpeg</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>BSD</License>
<IsA>library</IsA>
<IsA>app:console</IsA>
<Summary>JPEG2000 decoding library</Summary>
<Description>openjpeg is an open-source JPEG 2000 codec written in C. It has been developed in order to promote the use of JPEG 2000, the new still-image compression standard from the Joint Photographic Experts Group (JPEG).</Description>
<Archive sha1sum="430b9949b65a11fdf53323009ffedf0c6bb075ea" type="targz">https://github.com/uclouvain/openjpeg/archive/v2.3.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>lcms2-devel</Dependency>
<Dependency>tiff-devel</Dependency>
<Dependency>doxygen</Dependency>
<Dependency>libpng-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>openjpeg2</Name>
<RuntimeDependencies>
<Dependency>lcms2</Dependency>
<Dependency>tiff</Dependency>
<Dependency>libpng</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="man">/usr/share/man1</Path>
<Path fileType="man">/usr/share/man3</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>openjpeg2-devel</Name>
<Summary>Development files for openjpeg2</Summary>
<RuntimeDependencies>
<Dependency release="current">openjpeg2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/lib/openjpeg-2.3</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2018-03-30</Date>
<Version>2.3.0</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,14 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>openjpeg</Name>
<Summary xml:lang="tr">JPEG2000 çözme kütüphanesi</Summary>
<Summary xml:lang="pl">Biblioteka implementująca kodek formatu JPEG 2000</Summary>
</Source>
<Package>
<Name>openjpeg-devel</Name>
<Summary xml:lang="tr">openjpeg için geliştirme dosyaları</Summary>
<Summary xml:lang="pl">Pliki nagłówkowe do openjpeg</Summary>
</Package>
</PISI>