@@ -0,0 +1,27 @@
|
||||
#!/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 shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
cmaketools.configure("-DUSE_SHARED=ON \
|
||||
-DUSE_STATIC=OFF", sourceDir="..")
|
||||
|
||||
def build():
|
||||
shelltools.cd("build")
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
shelltools.cd("build")
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
shelltools.cd("..")
|
||||
pisitools.dodoc("README*")
|
||||
@@ -0,0 +1,62 @@
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -84,7 +84,7 @@ macro(opencollada_add_lib
|
||||
message(${name} " WARNING: Shared library support implemented for UNIX-like OS only")
|
||||
endif ()
|
||||
add_library(${name}_shared SHARED ${sources})
|
||||
- set_target_properties(${name}_shared PROPERTIES OUTPUT_NAME ${name})
|
||||
+ set_target_properties(${name}_shared PROPERTIES OUTPUT_NAME ${name} SOVERSION ${soversion})
|
||||
foreach(target_lib ${target_libs})
|
||||
if(TARGET ${target_lib}_shared)
|
||||
target_link_libraries(${name}_shared ${target_lib}_shared)
|
||||
@@ -190,8 +190,8 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}
|
||||
#-----------------------------------------------------------------------------
|
||||
# Install vars
|
||||
|
||||
-set(OPENCOLLADA_INST_INCLUDE ${CMAKE_INSTALL_PREFIX}/include/opencollada)
|
||||
-set(OPENCOLLADA_INST_LIBRARY ${CMAKE_INSTALL_PREFIX}/lib/opencollada)
|
||||
+set(OPENCOLLADA_INST_INCLUDE ${INCLUDE_INSTALL_DIR})
|
||||
+set(OPENCOLLADA_INST_LIBRARY ${LIB_INSTALL_DIR})
|
||||
set(OPENCOLLADA_INST_CMAKECONFIG ${OPENCOLLADA_INST_LIBRARY}/cmake)
|
||||
|
||||
|
||||
@@ -274,7 +274,10 @@ add_subdirectory(common/libftoa)
|
||||
add_subdirectory(${EXTERNAL_LIBRARIES}/UTF)
|
||||
add_subdirectory(common/libBuffer)
|
||||
add_subdirectory(${EXTERNAL_LIBRARIES}/MathMLSolver)
|
||||
-add_subdirectory(${EXTERNAL_LIBRARIES}/zlib)
|
||||
+#add_subdirectory(${EXTERNAL_LIBRARIES}/zlib)
|
||||
+pkg_check_modules(ZLIB REQUIRED zlib)
|
||||
+message(STATUS "zlib libraries: ${ZLIB_LIBRARIES}")
|
||||
+set(zlib_shared ${ZLIB_LIBRARIES})
|
||||
|
||||
# building OpenCOLLADA libs
|
||||
add_subdirectory(COLLADABaseUtils)
|
||||
--- a/DAEValidator/CMakeLists.txt
|
||||
+++ b/DAEValidator/CMakeLists.txt
|
||||
@@ -83,7 +83,7 @@ endif ()
|
||||
if (USE_STATIC)
|
||||
list(APPEND Libraries zlib_static)
|
||||
else ()
|
||||
- list(APPEND Libraries zlib_shared)
|
||||
+ list(APPEND Libraries ${zlib_shared})
|
||||
endif ()
|
||||
if (WIN32)
|
||||
list(APPEND Libraries ws2_32.lib)
|
||||
@@ -158,7 +158,7 @@ if (WIN32 AND ${CMAKE_MAJOR_VERSION}.${C
|
||||
if (USE_STATIC)
|
||||
list(APPEND Libraries xml_static zlib_static)
|
||||
else ()
|
||||
- list(APPEND Libraries xml_shared zlib_shared)
|
||||
+ list(APPEND Libraries xml_shared ${zlib_shared})
|
||||
endif ()
|
||||
if (WIN32)
|
||||
list(APPEND Libraries ws2_32.lib)
|
||||
@@ -211,7 +211,4 @@ endif ()
|
||||
# zlib
|
||||
if (USE_STATIC)
|
||||
add_dependencies(DAEValidatorExecutable zlib_static)
|
||||
-else ()
|
||||
- add_dependencies(DAEValidatorExecutable zlib_shared)
|
||||
endif ()
|
||||
-include_directories("../Externals/zlib/include")
|
||||
@@ -0,0 +1,13 @@
|
||||
--- a/COLLADABaseUtils/include/COLLADABUPcreCompiledPattern.h
|
||||
+++ b/COLLADABaseUtils/include/COLLADABUPcreCompiledPattern.h
|
||||
@@ -12,9 +12,7 @@
|
||||
#define __COLLADABU_PCRECOMPILEDPATTERN_H__
|
||||
|
||||
#include "COLLADABUPrerequisites.h"
|
||||
-
|
||||
-struct real_pcre;
|
||||
-typedef struct real_pcre pcre;
|
||||
+#include "pcre.h"
|
||||
|
||||
|
||||
namespace COLLADABU
|
||||
@@ -0,0 +1,11 @@
|
||||
--- a/DAEValidator/CMakeLists.txt
|
||||
+++ b/DAEValidator/CMakeLists.txt
|
||||
@@ -59,7 +59,7 @@ set(DAEValidatorLibrarySources
|
||||
library/include/XmlSchema.h
|
||||
library/include/win/dirent.h
|
||||
)
|
||||
-add_library(DAEValidatorLibrary ${DAEValidatorLibrarySources})
|
||||
+add_library(DAEValidatorLibrary STATIC ${DAEValidatorLibrarySources})
|
||||
include_directories("library/include")
|
||||
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
/usr/lib/opencollada
|
||||
@@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>OpenCOLLADA</Name>
|
||||
<Homepage>https://collada.org/mediawiki/index.php/OpenCOLLADA</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<IsA>app</IsA>
|
||||
<Summary>Collada 3D import and export libraries</Summary>
|
||||
<Description>Collada 3B kütüphaneleri içe ve dışa aktarma</Description>
|
||||
<Archive sha1sum="228625c1ddb8dc1bdb620d0a6532215effbff018" type="targz">https://github.com/KhronosGroup/OpenCOLLADA/archive/refs/tags/v1.6.68.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>libpcre-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
-->
|
||||
<Patches>
|
||||
<Patch level="1">fedora/OpenCOLLADA-pcre.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>OpenCOLLADA</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libpcre</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/etc/ld.so.conf.d/opencollada.conf">opencollada.conf</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>OpenCOLLADA-devel</Name>
|
||||
<Summary>Development files for OpenCOLLADA</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">OpenCOLLADA</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/cmake</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-05-11</Date>
|
||||
<Version>1.6.68</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>OpenCOLLADA</Name>
|
||||
<Summary xml:lang="tr">Collada 3D import and export libraries</Summary>
|
||||
<Description xml:lang="tr">Collada 3B kütüphaneleri içe ve dışa aktarma</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,34 @@
|
||||
#!/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 shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.system('sed -i "s/-Werror//g" src/core/CMakeLists.txt')
|
||||
shelltools.system('sed -i "s/-Werror//g" src/pyglue/CMakeLists.txt')
|
||||
shelltools.system('sed -i "s/push(hidden)/push(default)/g" src/core/OCIOYaml.cpp')
|
||||
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
cmaketools.configure("-DUSE_EXTERNAL_YAML=ON \
|
||||
-DUSE_EXTERNAL_TINYXML=ON \
|
||||
-DPYTHON=python3 \
|
||||
-DOCIO_BUILD_STATIC=OFF \
|
||||
-DUSE_EXTERNAL_LCMS=ON", sourceDir="..")
|
||||
|
||||
def build():
|
||||
shelltools.cd("build")
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
shelltools.cd("build")
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
shelltools.cd("..")
|
||||
pisitools.dodoc("README*")
|
||||
@@ -0,0 +1,98 @@
|
||||
From 8d48ee8da42de2d878db7b42586db8b3c67f83e1 Mon Sep 17 00:00:00 2001
|
||||
From: Jonathan Scruggs <j.scruggs@gmail.com>
|
||||
Date: Fri, 19 Jan 2018 10:17:18 +0000
|
||||
Subject: [PATCH] Use GNUInstallDirs and fix install location for cmake files
|
||||
(#501)
|
||||
|
||||
GNUInstallDirs is supported on all platforms and variables are set
|
||||
to the standard GNU locations.
|
||||
|
||||
Fix the location where the .cmake files are installed.
|
||||
|
||||
Signed-off by: Jonathan Scruggs <j.scruggs@gmail.com>
|
||||
---
|
||||
CMakeLists.txt | 9 +++++----
|
||||
docs/CMakeLists.txt | 4 ++--
|
||||
export/pkgconfig/OpenColorIO.pc.in | 6 ++----
|
||||
3 files changed, 9 insertions(+), 10 deletions(-)
|
||||
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index a399d57a..473f1b79 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -60,6 +60,7 @@ endif()
|
||||
include(ParseArguments)
|
||||
include(OCIOMacros)
|
||||
include(ExternalProject)
|
||||
+include(GNUInstallDirs)
|
||||
|
||||
enable_language(CXX)
|
||||
|
||||
@@ -558,7 +559,7 @@ endif()
|
||||
configure_file(${CMAKE_SOURCE_DIR}/share/ocio/setup_ocio.sh.in
|
||||
${CMAKE_CURRENT_BINARY_DIR}/share/ocio/setup_ocio.sh @ONLY)
|
||||
|
||||
-INSTALL(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/share/ocio/setup_ocio.sh DESTINATION share/ocio/)
|
||||
+INSTALL(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/share/ocio/setup_ocio.sh DESTINATION ${CMAKE_INSTALL_DATADIR}/ocio/)
|
||||
|
||||
###############################################################################
|
||||
### CPACK ###
|
||||
@@ -623,7 +624,7 @@ if(TARGET OpenColorIO_STATIC)
|
||||
set(OCIO_STATIC_COMPILE_DEFINITIONS )
|
||||
endif()
|
||||
endif()
|
||||
-install(EXPORT OpenColorIO DESTINATION cmake)
|
||||
+install(EXPORT OpenColorIO DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/OpenColorIO)
|
||||
file(WRITE "${CMAKE_BINARY_DIR}/OpenColorIOConfig.cmake"
|
||||
"
|
||||
get_filename_component(OpenColorIO_DIR \"\${CMAKE_CURRENT_LIST_FILE}\" PATH)
|
||||
@@ -635,7 +636,7 @@ file(WRITE "${CMAKE_BINARY_DIR}/OpenColorIOConfig.cmake"
|
||||
|
||||
## targets libraries + associated definitions
|
||||
if(NOT TARGET OpenColorIO)
|
||||
- include(\"\${OpenColorIO_DIR}/cmake/OpenColorIO.cmake\") ## thanks to imported target
|
||||
+ include(\"\${OpenColorIO_DIR}/${CMAKE_INSTALL_LIBDIR}/cmake/OpenColorIO/OpenColorIO.cmake\") ## thanks to imported target
|
||||
if(TARGET OpenColorIO AND NOT OpenColorIO_USE_STATIC)
|
||||
message(STATUS \"shared target OpenColorIO : see OpenColorIO_LIBRARY\")
|
||||
set(OpenColorIO_LIBRARY OpenColorIO)
|
||||
@@ -673,4 +674,4 @@ file(WRITE "${CMAKE_BINARY_DIR}/OpenColorIOConfig.cmake"
|
||||
message(STATUS OPENCOLORIO_FOUND=\${OPENCOLORIO_FOUND})
|
||||
"
|
||||
)
|
||||
-install(FILES "${CMAKE_BINARY_DIR}/OpenColorIOConfig.cmake" DESTINATION .)
|
||||
+install(FILES "${CMAKE_BINARY_DIR}/OpenColorIOConfig.cmake" DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/OpenColorIO)
|
||||
diff --git a/docs/CMakeLists.txt b/docs/CMakeLists.txt
|
||||
index 5970db64..4d97f72c 100644
|
||||
--- a/docs/CMakeLists.txt
|
||||
+++ b/docs/CMakeLists.txt
|
||||
@@ -138,7 +138,7 @@ add_custom_target(doc ALL
|
||||
add_dependencies(doc Sphinx)
|
||||
|
||||
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/build-html/
|
||||
- DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/OpenColorIO/html
|
||||
+ DESTINATION ${CMAKE_INSTALL_DOCDIR}/html
|
||||
PATTERN .* EXCLUDE
|
||||
)
|
||||
|
||||
@@ -173,6 +173,6 @@ if(PDFLATEX_COMPILER)
|
||||
add_dependencies(pdf latex)
|
||||
|
||||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/build-latex/OpenColorIO.pdf
|
||||
- DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/OpenColorIO/)
|
||||
+ DESTINATION ${CMAKE_INSTALL_DOCDIR})
|
||||
|
||||
endif()
|
||||
diff --git a/export/pkgconfig/OpenColorIO.pc.in b/export/pkgconfig/OpenColorIO.pc.in
|
||||
index 81ab4ce3..c4553a4f 100644
|
||||
--- a/export/pkgconfig/OpenColorIO.pc.in
|
||||
+++ b/export/pkgconfig/OpenColorIO.pc.in
|
||||
@@ -1,7 +1,5 @@
|
||||
-prefix=@CMAKE_INSTALL_PREFIX@
|
||||
-exec_prefix=@CMAKE_INSTALL_EXEC_PREFIX@
|
||||
-includedir=${prefix}/include
|
||||
-libdir=${exec_prefix}/lib@LIB_SUFFIX@
|
||||
+libdir=@CMAKE_INSTALL_FULL_LIBDIR@
|
||||
+includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@
|
||||
|
||||
Name: OpenColorIO
|
||||
Description: A color management framework for visual effects and animation
|
||||
@@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>OpenColorIO1</Name>
|
||||
<Homepage>http://opencolorio.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>app</IsA>
|
||||
<Summary>Enables color transforms and image display across graphics apps</Summary>
|
||||
<Description>Grafik uygulamalarında renk dönüşümlerini ve görüntü ekranını etkinleştirir</Description>
|
||||
<Archive sha1sum="511bbea2ad361ee59b067be85544518f7502fe1c" type="targz">https://github.com/AcademySoftwareFoundation/OpenColorIO/archive/refs/tags/v1.1.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>yaml-cpp</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
<Dependency>tinyxml-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<!-- <Dependency>openimageio-devel</Dependency> -->
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">8d48ee8da42de2d878db7b42586db8b3c67f83e1.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>OpenColorIO1</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>tinyxml</Dependency>
|
||||
<!-- <Dependency>openimageio</Dependency> -->
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/ocio</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>OpenColorIO1-devel</Name>
|
||||
<Summary>Development files for OpenColorIO1</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">OpenColorIO1</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/cmake</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-05-11</Date>
|
||||
<Version>1.1.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>OpenColorIO1</Name>
|
||||
<Summary xml:lang="tr">Enables color transforms and image display across graphics apps</Summary>
|
||||
<Description xml:lang="tr">Grafik uygulamalarında renk dönüşümlerini ve görüntü ekranını etkinleştirir</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
+145
-1
@@ -52614,6 +52614,7 @@ using GTK/GNOME.</Summary>
|
||||
<Dependency>ffmpeg-devel</Dependency>
|
||||
<Dependency>kuserfeedback-devel</Dependency>
|
||||
<Dependency>libXScrnSaver-devel</Dependency>
|
||||
<Dependency>qt5-keychain-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>desktop/kde/applications/pim-sieve-editor/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
@@ -52636,6 +52637,7 @@ using GTK/GNOME.</Summary>
|
||||
<Dependency>kiconthemes</Dependency>
|
||||
<Dependency>kconfigwidgets</Dependency>
|
||||
<Dependency>kwidgetsaddons</Dependency>
|
||||
<Dependency>qt5-keychain</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/xdg</Path>
|
||||
@@ -109644,6 +109646,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="11">
|
||||
<Date>2021-05-11</Date>
|
||||
<Version>0.8.1</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="10">
|
||||
<Date>2020-03-15</Date>
|
||||
<Version>0.8.1</Version>
|
||||
@@ -209122,6 +209131,69 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>OpenCOLLADA</Name>
|
||||
<Homepage>https://collada.org/mediawiki/index.php/OpenCOLLADA</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<IsA>app</IsA>
|
||||
<PartOf>multimedia.misc</PartOf>
|
||||
<Summary xml:lang="en">Collada 3D import and export libraries</Summary>
|
||||
<Summary xml:lang="tr">Collada 3D import and export libraries</Summary>
|
||||
<Description xml:lang="en">Collada 3B kütüphaneleri içe ve dışa aktarma</Description>
|
||||
<Description xml:lang="tr">Collada 3B kütüphaneleri içe ve dışa aktarma</Description>
|
||||
<Archive type="targz" sha1sum="228625c1ddb8dc1bdb620d0a6532215effbff018" name="v1.6.68.tar.gz">https://github.com/KhronosGroup/OpenCOLLADA/archive/refs/tags/v1.6.68.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>libpcre-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">fedora/OpenCOLLADA-pcre.patch</Patch>
|
||||
</Patches>
|
||||
<SourceURI>multimedia/misc/OpenCOLLADA/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>OpenCOLLADA</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libpcre</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/etc/ld.so.conf.d/opencollada.conf" permission="0644" owner="root">opencollada.conf</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>OpenCOLLADA-devel</Name>
|
||||
<Summary xml:lang="en">Development files for OpenCOLLADA</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="1">OpenCOLLADA</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/cmake</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-05-11</Date>
|
||||
<Version>1.6.68</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>sdl2-net</Name>
|
||||
@@ -211719,6 +211791,71 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>OpenColorIO1</Name>
|
||||
<Homepage>http://opencolorio.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>app</IsA>
|
||||
<PartOf>multimedia.misc</PartOf>
|
||||
<Summary xml:lang="en">Enables color transforms and image display across graphics apps</Summary>
|
||||
<Summary xml:lang="tr">Enables color transforms and image display across graphics apps</Summary>
|
||||
<Description xml:lang="en">Grafik uygulamalarında renk dönüşümlerini ve görüntü ekranını etkinleştirir</Description>
|
||||
<Description xml:lang="tr">Grafik uygulamalarında renk dönüşümlerini ve görüntü ekranını etkinleştirir</Description>
|
||||
<Archive type="targz" sha1sum="511bbea2ad361ee59b067be85544518f7502fe1c" name="v1.1.1.tar.gz">https://github.com/AcademySoftwareFoundation/OpenColorIO/archive/refs/tags/v1.1.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>yaml-cpp</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
<Dependency>tinyxml-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">8d48ee8da42de2d878db7b42586db8b3c67f83e1.patch</Patch>
|
||||
</Patches>
|
||||
<SourceURI>multimedia/misc/OpenColorIO1/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>OpenColorIO1</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>tinyxml</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/ocio</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>OpenColorIO1-devel</Name>
|
||||
<Summary xml:lang="en">Development files for OpenColorIO1</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="1">OpenColorIO1</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/cmake</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-05-11</Date>
|
||||
<Version>1.1.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>liblqr</Name>
|
||||
@@ -236040,7 +236177,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
|
||||
<PartOf>multimedia.videoplayer</PartOf>
|
||||
<Summary xml:lang="en">New desktop recording program.</Summary>
|
||||
<Description xml:lang="en">VokscreenNG is a user friendly Open Source screencaster for Linux and Windows. The new name is now vokoscreenNG and has been rewritten from scratch.</Description>
|
||||
<Archive type="targz" sha1sum="0ebf0ea66dd0dab6825808ffa6b7b04c981081f0" name="3.0.6.tar.gz">https://github.com/vkohaupt/vokoscreenNG/archive/3.0.6.tar.gz</Archive>
|
||||
<Archive type="targz" sha1sum="4b0cad9c8fa36a32686d9c50bb4328b641412262" name="3.0.8.tar.gz">https://github.com/vkohaupt/vokoscreenNG/archive/3.0.8.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>qt5-linguist</Dependency>
|
||||
@@ -236078,6 +236215,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2021-05-11</Date>
|
||||
<Version>3.0.8</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2020-09-13</Date>
|
||||
<Version>3.0.6</Version>
|
||||
|
||||
@@ -1 +1 @@
|
||||
ca6d8079874d05260b5bfa3cb5f8ebd4b4fc657a
|
||||
8fb9d6b5ba576c69f41bdd22d2d73bd2c58dbc7a
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
870e5194b69ddaec836e4c2f020d6614f02de2e2
|
||||
f78b04f5c3fc0b28fa46d985ee5bb628a7e02686
|
||||
Reference in New Issue
Block a user