Merge pull request #11265 from 4fury-c3440d8/handbrake-qsv

handbrake.
This commit is contained in:
Kamil ATLI
2023-01-04 15:59:20 +03:00
committed by GitHub
14 changed files with 526 additions and 181 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import cmaketools, mesontools
j = ''.join([
' -DCMAKE_BUILD_TYPE=Release',
' -B_build -G Ninja -L '
])
def setup():
cmaketools.configure(j)
def build():
mesontools.build("-C _build")
def install():
mesontools.install("-C _build")
+65
View File
@@ -0,0 +1,65 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gmmlib</Name>
<Homepage>https://github.com/intel/gmmlib</Homepage>
<Packager>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Packager>
<License>MIT</License>
<IsA>library</IsA>
<PartOf>hardware.graphics</PartOf>
<Summary>Graphics Memory Management Library.</Summary>
<Description>
The Intel(R) Graphics Memory Management Library provides device specific and buffer management for the Intel(R) Graphics Compute Runtime for OpenCL(TM) and the Intel(R) Media Driver for VAAPI.
</Description>
<Archive sha1sum="60a253e6e5eb394553982a60665ebd1efa62f63d" type="targz">
https://github.com/intel/gmmlib/archive/refs/tags/intel-gmmlib-22.2.0.tar.gz
</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>ninja</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch level='1'></Patch> -->
</Patches>
</Source>
<Package>
<Name>gmmlib</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/libigdgmm.so</Path>
<Path fileType="library">/usr/lib/libigdgmm.so.12</Path>
<Path fileType="library">/usr/lib/libigdgmm.so.12.2.0</Path>
</Files>
</Package>
<Package>
<Name>gmmlib-devel</Name>
<RuntimeDependencies>
<Dependency release="current">gmmlib</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="headers">/usr/include/igdgmm/GmmLib</Path>
<Path fileType="headers">/usr/include/igdgmm/inc</Path>
<Path fileType="headers">/usr/include/igdgmm/util</Path>
<Path fileType="headers">/usr/include/igdgmm/igdgmm.h</Path>
<Path fileType="data">/usr/lib/pkgconfig/igdgmm.pc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2023-01-01</Date>
<Version>22.2.0</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,22 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import cmaketools, mesontools
j = ''.join([
' -DCMAKE_BUILD_TYPE=Release',
' -DMEDIA_BUILD_FATAL_WARNINGS=OFF',
' -B_build -G Ninja -Wno-dev -L '
])
def setup():
cmaketools.configure(j)
def build():
mesontools.build("-C _build")
def install():
mesontools.install("-C _build")
@@ -0,0 +1,63 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>intel-media-driver</Name>
<Homepage>https://github.com/intel/media-driver/</Homepage>
<Packager>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Packager>
<License>MIT</License>
<License>BSD-3-Clause</License>
<IsA>library</IsA>
<PartOf>hardware.graphics</PartOf>
<Summary>Media Driver for VAAPI.</Summary>
<Description>
The Intel(R) Media Driver for VAAPI is a new VA-API (Video Acceleration API) user mode driver supporting hardware accelerated decoding, encoding, and video post processing for GEN based graphics hardware.
</Description>
<Archive sha1sum="2c893287b857265889019f62e68e87de9b920975" type="targz">
https://github.com/intel/media-driver/archive/refs/tags/intel-media-22.5.4.tar.gz
</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>ninja</Dependency>
<Dependency>mesa-devel</Dependency>
<Dependency>libva-devel</Dependency>
<Dependency>libdrm-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>gmmlib-devel</Dependency>
<Dependency>libpciaccess-devel</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch level='1'></Patch> -->
</Patches>
</Source>
<Package>
<Name>intel-media-driver</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>libva</Dependency>
<Dependency>gmmlib</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="headers">/usr/include/igfxcmrt</Path>
<Path fileType="data">/usr/lib/pkgconfig/igfxcmrt.pc</Path>
<Path fileType="library">/usr/lib/dri/iHD_drv_video.so</Path>
<Path fileType="library">/usr/lib/libigfxcmrt.so</Path>
<Path fileType="library">/usr/lib/libigfxcmrt.so.7</Path>
<Path fileType="library">/usr/lib/libigfxcmrt.so.7.2.0</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2023-01-01</Date>
<Version>22.5.4</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,25 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import cmaketools, mesontools
j = ''.join([
' -DCMAKE_BUILD_TYPE=Release',
' -DBUILD_TOOLS=ON',
' -DENABLE_X11_DRI3=ON',
' -DENABLE_OPENCL=ON',
' -DENABLE_WAYLAND=ON',
' -B_build -G Ninja -L '
])
def setup():
cmaketools.configure(j)
def build():
mesontools.build("-C _build")
def install():
mesontools.install("-C _build")
@@ -0,0 +1,87 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>intel-media-sdk</Name>
<Homepage>https://github.com/Intel-Media-SDK/MediaSDK/</Homepage>
<Packager>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Packager>
<License>MIT</License>
<IsA>library</IsA>
<PartOf>programming.tools</PartOf>
<Summary>The Intel Media SDK.</Summary>
<Description>Media SDK provides a plain C API to access hardware-accelerated video decode, encode and filtering on Intel® Gen graphics hardware platforms.</Description>
<Archive sha1sum="121bf42101bdd57426bf87d2bafb34c3faca82f9" type="targz">
https://github.com/Intel-Media-SDK/MediaSDK/archive/refs/tags/intel-mediasdk-22.5.4.tar.gz
</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>ninja</Dependency>
<Dependency>libva-devel</Dependency>
<Dependency>libdrm-devel</Dependency>
<Dependency>libxcb-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>opencl-icd-devel</Dependency>
<Dependency>libpciaccess-devel</Dependency>
<Dependency>wayland-protocols-devel</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch level='1'></Patch> -->
</Patches>
</Source>
<Package>
<Name>intel-media-sdk</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>libva</Dependency>
<Dependency>libdrm</Dependency>
<Dependency>libdrm-intel</Dependency>
<Dependency>opencl-icd</Dependency>
<Dependency>wayland-client</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/mfx</Path>
<Path fileType="data">/usr/lib/pkgconfig/limfxhw64.pc</Path>
<Path fileType="data">/usr/share/mfx</Path>
</Files>
</Package>
<Package>
<Name>libmfx</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/libmfx.so</Path>
<Path fileType="library">/usr/lib/libmfx.so.1</Path>
<Path fileType="library">/usr/lib/libmfx.so.1.35</Path>
</Files>
</Package>
<Package>
<Name>libmfx-devel</Name>
<RuntimeDependencies>
<Dependency release="current">libmfx</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/lib/pkgconfig/mfx.pc</Path>
<Path fileType="data">/usr/lib/pkgconfig/libmfx.pc</Path>
<Path fileType="headers">/usr/include/mfx</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2023-01-03</Date>
<Version>22.5.4</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI>
-30
View File
@@ -1,30 +0,0 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright 2009 TUBITAK/UEKAE
# Licensed under the GNU General Public License, version 2.
# See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.autoreconf("-vfi")
autotools.configure("--disable-static \
--enable-shared \
--with-libva_drm=yes \
--with-libva_x11=yes \
")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
#pisitools.dodoc("AUTHORS","LICENSE", "README.md")
-57
View File
@@ -1,57 +0,0 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libmfx</Name>
<Homepage>https://github.com/lu-zero/mfx_dispatch</Homepage>
<Packager>
<Name>Idris Kalp</Name>
<Email>idriskalp@gmail.com</Email>
</Packager>
<License>BSD</License>
<IsA>library</IsA>
<Summary> Intel media sdk dispatcher </Summary>
<Description> Intel media sdk dispatcher </Description>
<Archive sha1sum="6ee528460d6b6d31c02c2b9528e6f91326345143" type="targz">https://github.com/lu-zero/mfx_dispatch/archive/1.25.tar.gz</Archive>
<BuildDependencies>
<Dependency>libdrm-devel</Dependency>
<Dependency>libva-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libmfx</Name>
<RuntimeDependencies>
<Dependency>libdrm</Dependency>
<Dependency>libva</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libmfx-devel</Name>
<RuntimeDependencies>
<Dependency release="current">libmfx</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-01-14</Date>
<Version>1.25</Version>
<Comment>First Release</Comment>
<Name>Idris Kalp</Name>
<Email>idriskalp@gmail.com</Email>
</Update>
</History>
</PISI>
+30
View File
@@ -0,0 +1,30 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import cmaketools, mesontools, pisitools
j = ''.join([
' -DCMAKE_BUILD_TYPE=Release',
' -DONEAPI_INSTALL_ENVDIR=/usr/share/vpl',
' -DONEAPI_INSTALL_MODFILEDIR=/usr/share/vpl/modulefiles',
' -DBUILD_TOOLS_ONEVPL_EXPERIMENTAL=OFF',
' -DBUILD_DISPATCHER_ONEVPL_EXPERIMENTAL=OFF',
' -DBUILD_TESTS=ON',
' -DBUILD_TOOLS=ON',
' -DBUILD_DEV=ON',
' -B_build -G Ninja -L '
])
def setup():
cmaketools.configure(j)
def build():
mesontools.build("-C _build")
def install():
mesontools.install("-C _build")
pisitools.dodoc("CHANGELOG.md", "CONTRIBUTING.md")
+83
View File
@@ -0,0 +1,83 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>onevpl</Name>
<Homepage>https://github.com/oneapi-src/oneVPL</Homepage>
<Packager>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Packager>
<License>MIT</License>
<IsA>library</IsA>
<PartOf>hardware.graphics</PartOf>
<Summary>Video Processing Library.</Summary>
<Description>
The oneAPI Video Processing Library (oneVPL) is a programming interface for video decoding, encoding, and processing to build portable media pipelines on CPUs, GPUs, and other accelerators.
</Description>
<Archive sha1sum="6a5886981b9ab9ad643a1e6c2eca31ca2f479350" type="targz">
https://github.com/oneapi-src/oneVPL/archive/refs/tags/v2023.1.1.tar.gz
</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>ninja</Dependency>
<Dependency>libva-devel</Dependency>
<Dependency>libxcb-devel</Dependency>
<Dependency>libdrm-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>wayland-devel</Dependency>
<Dependency>wayland-client</Dependency>
<!-- <Dependency>wayland-server</Dependency> -->
<Dependency>libpciaccess-devel</Dependency>
<Dependency>wayland-protocols-devel</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch level='1'></Patch> -->
</Patches>
</Source>
<Package>
<Name>onevpl</Name>
<RuntimeDependencies>
<Dependency>libva</Dependency>
<Dependency>libxcb</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>libdrm</Dependency>
<Dependency>libdrm-intel</Dependency>
<Dependency>wayland-client</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/vpl</Path>
<Path fileType="data">/usr/share/doc/onevpl</Path>
<Path fileType="data">/usr/share/vpl/licensing</Path>
<Path fileType="data">/usr/share/vpl/vars.sh</Path>
<Path fileType="data">/usr/share/vpl/modulefiles/vpl</Path>
</Files>
</Package>
<Package>
<Name>onevpl-devel</Name>
<RuntimeDependencies>
<Dependency release="current">onevpl</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/cmake/vpl</Path>
<Path fileType="library">/usr/lib/pkgconfig/vpl.pc</Path>
<Path fileType="headers">/usr/include/vpl</Path>
<Path fileType="data">/usr/share/vpl/examples</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2023-01-02</Date>
<Version>2023.1.1</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI>
+9 -11
View File
@@ -10,14 +10,15 @@ from pisi.actionsapi import pisitools
from pisi.actionsapi import get
J = ''.join([
' --disable-static',
' --prefix=/usr',
' --disable-rpath',
' --disable-gtk4',
' --disable-silent-rules',
' --enable-qsv',
' --disable-update-checks',
' --enable-x265',
' --enable-qsv',
' --enable-numa',
' --enable-fdk-aac',
' --enable-libav-aac '
' --enable-fdk-aac '
])
def setup():
@@ -26,15 +27,12 @@ def setup():
shelltools.cd("gtk")
autotools.autoreconf("-fiv")
shelltools.cd("..")
autotools.rawConfigure("--prefix=/usr --force %s" % J)
autotools.rawConfigure("--force %s" % J)
def build():
shelltools.cd("build")
autotools.make()
autotools.make("-C build")
def install():
shelltools.cd("build")
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("../*.markdown", "../COPYING", "../LICENSE")
autotools.rawInstall("-C build DESTDIR=%s" % get.installDIR())
pisitools.dodoc("*.markdown", "COPYING", "LICENSE")
+19 -9
View File
@@ -14,7 +14,9 @@
<IsA>app:gui</IsA>
<Summary>The open source video transcoder.</Summary>
<Description>HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs. The program is also used to convert DVDs so they can be viewed on iPods, iPhones and most media players.</Description>
<Archive sha1sum="25ff44ea8b6341b5a53ef59f7ca13e17c5d02891" type="tarbz2">https://github.com/HandBrake/HandBrake/releases/download/1.5.1/HandBrake-1.5.1-source.tar.bz2</Archive>
<Archive sha1sum="55fdad0f46428d5f74f11095b5811ef0c5f1e9fe" type="tarbz2">
https://github.com/HandBrake/HandBrake/releases/download/1.6.0/HandBrake-1.6.0-source.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>nasm</Dependency>
<Dependency>meson</Dependency>
@@ -32,6 +34,7 @@
<Dependency>libva-devel</Dependency>
<Dependency>libvpx-devel</Dependency>
<Dependency>libogg-devel</Dependency>
<!-- <Dependency>libmfx-devel</Dependency> -->
<Dependency>libass-devel</Dependency>
<Dependency>fribidi-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
@@ -101,14 +104,21 @@
</Files>
</Package>
<History>
<Update release="2">
<Date>2022-04-24</Date>
<Version>1.5.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<History>
<Update release="3">
<Date>2022-12-31</Date>
<Version>1.6.0</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="2">
<Date>2022-04-24</Date>
<Version>1.5.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="1">
<Date>2021-10-19</Date>
<Version>1.4.2</Version>
Executable → Regular
+24 -14
View File
@@ -1,31 +1,41 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright 2009 TUBITAK/UEKAE
# Licensed under the GNU General Public License, version 2.
# See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import cmaketools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
pisitools.insinto("/usr/include/CL", "OpenCL-Headers-2020.12.18/CL/*")
shelltools.export("CFLAGS", "-I%s/usr/include -O2")
shelltools.export("CXXFLAGS", "-I%s/usr/include -O2")
pisitools.cflags.add("-fcommon")
autotools.autoreconf("-vfi")
shelltools.export("CFLAGS", "-I%s/usr/include -O2")
shelltools.export("CXXFLAGS", "-I%s/usr/include -O2")
pisitools.cflags.add("-fcommon")
shelltools.system("./bootstrap")
autotools.configure()
autotools.configure()
shelltools.cd("OpenCL-Headers-2021.06.30")
cmaketools.configure("-DCMAKE_BUILD_TYPE=Release")
shelltools.cd("../OpenCL-CLHPP-2.0.15")
cmaketools.configure("-DBUILD_EXAMPLES=OFF -DBUILD_TESTS=OFF")
def build():
autotools.make()
autotools.make()
def check():
autotools.make("check")
autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("NEWS")
pisitools.dodoc("COPYING","NEWS", "README")
shelltools.cd("OpenCL-Headers-2021.06.30")
cmaketools.install()
shelltools.cd("../OpenCL-CLHPP-2.0.15")
cmaketools.install()
Executable → Regular
+78 -60
View File
@@ -1,68 +1,86 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>opencl-icd</Name>
<Homepage>https://github.com/OCL-dev/ocl-icd</Homepage>
<Packager>
<Name>Mathias Freire</Name>
<Email>mathiasfreire45@gmail.com</Email>
</Packager>
<License>BSD-2-Clause</License>
<IsA>library</IsA>
<Summary>OpenCL ICD loader library</Summary>
<Description>OpenCL is a royalty-free standard for cross-platform, parallel programming of modern processors found in personal computers, servers and handheld/embedded devices.</Description>
<Archive sha1sum="30c8817d54582d3cc26dd4fa0a0c1d408847de05" type="targz">https://github.com/OCL-dev/ocl-icd/archive/v2.2.14.tar.gz</Archive>
<!-- <Archive sha1sum="67aaa4264084ae0551f1f3045998e78b217ee37d" type="tarxz" target="ocl-icd-2.2.14">https://sourceforge.net/projects/pisilinux/files/source/OpenCL-Headers-2.1.tar.xz</Archive> -->
<Archive sha1sum="11bb1a594bec203b78184d934257e91c9e68084a" type="targz" target="ocl-icd-2.2.14">https://github.com/KhronosGroup/OpenCL-Headers/archive/v2020.12.18.tar.gz</Archive>
<BuildDependencies>
<Dependency>ruby</Dependency>
</BuildDependencies>
</Source>
<Source>
<Name>opencl-icd</Name>
<Homepage>https://github.com/OCL-dev/ocl-icd</Homepage>
<Packager>
<Name>Mathias Freire</Name>
<Email>mathiasfreire45@gmail.com</Email>
</Packager>
<License>Apache-2</License>
<License>BSD-2-Clause</License>
<IsA>library</IsA>
<Summary>OpenCL ICD loader library</Summary>
<Description>OpenCL is a royalty-free standard for cross-platform, parallel programming of modern processors found in personal computers, servers and handheld/embedded devices.</Description>
<Archive sha1sum="2466775f66ad1febda29615f6701411cc48e4efe" type="targz">
https://github.com/OCL-dev/ocl-icd/archive/refs/tags/v2.3.1.tar.gz
</Archive>
<Archive sha1sum="d1b8b405eda94e6166a31ba91ab8b0a759e12a99" type="targz" target="ocl-icd-2.3.1">
https://github.com/KhronosGroup/OpenCL-CLHPP/archive/refs/tags/v2.0.15.tar.gz
</Archive>
<Archive sha1sum="66226403b631dc3c320d761a5a0e2c36ef5304f5" type="targz" target="ocl-icd-2.3.1">
https://github.com/KhronosGroup/OpenCL-Headers/archive/refs/tags/v2021.06.30.tar.gz
</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>ruby</Dependency>
<!-- <Dependency>doxygen</Dependency> -->
<Dependency>python3</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>opencl-icd</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>opencl-icd</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>opencl-icd-32bit</Name>
<BuildType>emul32</BuildType>
<PartOf>emul32</PartOf>
<Files>
<Path fileType="library">/usr/lib32</Path>
</Files>
</Package>
<Package>
<Name>opencl-icd-32bit</Name>
<BuildType>emul32</BuildType>
<PartOf>emul32</PartOf>
<Files>
<Path fileType="library">/usr/lib32</Path>
</Files>
</Package>
<Package>
<Name>opencl-icd-devel</Name>
<RuntimeDependencies>
<Dependency release="current">opencl-icd</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="config">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<Package>
<Name>opencl-icd-devel</Name>
<RuntimeDependencies>
<Dependency release="current">opencl-icd</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/share/cmake</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2021-01-28</Date>
<Version>2.2.14</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="1">
<Date>2019-11-15</Date>
<Version>2.2.12</Version>
<Comment>First Release</Comment>
<Name>Idris Kalp</Name>
<Email>idriskalp@gmail.com</Email>
</Update>
</History>
<History>
<Update release="3">
<Date>2023-01-02</Date>
<Version>2.3.1</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="2">
<Date>2021-01-28</Date>
<Version>2.2.14</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="1">
<Date>2019-11-15</Date>
<Version>2.2.12</Version>
<Comment>First Release</Comment>
<Name>Idris Kalp</Name>
<Email>idriskalp@gmail.com</Email>
</Update>
</History>
</PISI>