Executable
+30
@@ -0,0 +1,30 @@
|
||||
|
||||
#!/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")
|
||||
Executable
+57
@@ -0,0 +1,57 @@
|
||||
<?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>
|
||||
|
||||
|
||||
Executable
+26
@@ -0,0 +1,26 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-vfi")
|
||||
autotools.configure("--enable-static='no'")
|
||||
|
||||
|
||||
def build():
|
||||
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" %get.installDIR())
|
||||
|
||||
pisitools.dodoc("COPYING", "README.md", "ChangeLog")
|
||||
|
||||
Executable
+50
@@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libzimg</Name>
|
||||
<Homepage>https://github.com/sekrit-twc/zimg</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>WTFPL</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Scaling, colorspace conversion, and dithering library</Summary>
|
||||
<Description>The "z" library implements the commonly required image processing basics of scaling, colorspace conversion, and depth conversion.</Description>
|
||||
<Archive sha1sum="58951dca1da1a57f35216f6d84b2c0c6f4e60195" type="targz">https://github.com/sekrit-twc/zimg/archive/release-2.9.2.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libzimg</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libzimg-devel</Name>
|
||||
<Summary>Header files for libzimg.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libzimg</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>2.9.2</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 2
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def build():
|
||||
autotools.make("PREFIX='/usr'")
|
||||
shelltools.system("sed -n '4,25p' include/ffnvcodec/nvEncodeAPI.h > LICENSE")
|
||||
shelltools.system("sed -i '1,22s/^.\{,3\}//' LICENSE")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("PREFIX='/usr' DESTDIR=%s" % get.installDIR())
|
||||
pisitools.dodoc("LICENSE")
|
||||
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ffnvcodec</Name>
|
||||
<Homepage>https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>FFmpeg version of headers required to interface with Nvidias codec APIs</Summary>
|
||||
<Description>FFmpeg version of headers required to interface with Nvidias codec APIs</Description>
|
||||
<Archive sha1sum="f060706fabaf83e94bf9dfaa6848048f0753eaba" type="tarxz">https://sourceforge.net/projects/pisilinux/files/source/ffnvcodec-9.1.23.1.tar.xz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>ffnvcodec</Name>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-01-14</Date>
|
||||
<Version>9.1.23.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
Executable
+27
@@ -0,0 +1,27 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-vfi")
|
||||
autotools.configure("--disable-static \
|
||||
--without-portaudiocpp")
|
||||
|
||||
|
||||
def build():
|
||||
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" %get.installDIR())
|
||||
|
||||
pisitools.dodoc("LICENSE", "README.md")
|
||||
|
||||
Executable
+73
@@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libopenmpt</Name>
|
||||
<Homepage>http://lib.openmpt.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A cross-platform C++ and C library to decode tracked music files (modules) into a raw PCM audio stream.</Summary>
|
||||
<Description>A cross-platform C++ and C library to decode tracked music files (modules) into a raw PCM audio stream.</Description>
|
||||
<Archive sha1sum="edd05d565950601c2bcb11e92d7dba95dd752a4e" type="targz">https://lib.openmpt.org/files/libopenmpt/src/libopenmpt-0.4.11+release.autotools.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>flac-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>libogg-devel</Dependency>
|
||||
<Dependency>mpg123-devel</Dependency>
|
||||
<Dependency>libvorbis-devel</Dependency>
|
||||
<Dependency>portaudio-devel</Dependency>
|
||||
<Dependency>libsndfile-devel</Dependency>
|
||||
<Dependency>pulseaudio-libs-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libopenmpt</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>flac</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libogg</Dependency>
|
||||
<Dependency>mpg123</Dependency>
|
||||
<Dependency>libvorbis</Dependency>
|
||||
<Dependency>portaudio</Dependency>
|
||||
<Dependency>libsndfile</Dependency>
|
||||
<Dependency>pulseaudio-libs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libopenmpt-devel</Name>
|
||||
<Summary>Header files for libopenmpt.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libopenmpt</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>0.4.11</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
|
||||
Executable
+38
@@ -0,0 +1,38 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.system("mkdir build_")
|
||||
shelltools.cd("build_")
|
||||
|
||||
shelltools.system("cmake .. \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_LIBDIR=lib \
|
||||
-DBUILD_EXAMPLES='OFF' \
|
||||
-DBUILD_SHARED_LIBS='ON' \
|
||||
-DWITH_AVFFT='OFF' \
|
||||
-DWITH_LSR_BINDINGS='ON' \
|
||||
-DWITH_PFFFT='ON' \
|
||||
-DWITH_OPENMP='ON'")
|
||||
|
||||
def build():
|
||||
shelltools.cd("build_")
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
shelltools.cd("build_")
|
||||
autotools.rawInstall("DESTDIR=%s" %get.installDIR())
|
||||
|
||||
shelltools.cd("..")
|
||||
pisitools.dodoc("AUTHORS", "COPYING.LGPL", "LICENCE", "NEWS", "README")
|
||||
|
||||
Executable
+56
@@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libsoxr</Name>
|
||||
<Homepage>http://sourceforge.net/p/soxr/wiki/Home/</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPL</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>The SoX Resampler library that aims to give fast and high quality results for any constant resampling ratio</Summary>
|
||||
<Description>The SoX Resampler library that aims to give fast and high quality results for any constant resampling ratio</Description>
|
||||
<Archive sha1sum="32ea46b1a8c0c15f835422892d02fce8286aec3c" type="tarxz">https://sourceforge.net/projects/soxr/files/soxr-0.1.3-Source.tar.xz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libsoxr</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libgomp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libsoxr-devel</Name>
|
||||
<Summary>Header files for libsoxr.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libsoxr</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>0.1.3</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
|
||||
Executable
+26
@@ -0,0 +1,26 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-vfi")
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
|
||||
def build():
|
||||
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" %get.installDIR())
|
||||
|
||||
pisitools.dodoc("ChangeLog", "COPYING", "README*")
|
||||
|
||||
Executable
+55
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>shine</Name>
|
||||
<Homepage>GPL2 </Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPL2 </License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Super fast fixed-point MP3 encoder</Summary>
|
||||
<Description>shine is a blazing fast mp3 encoding library implemented in fixed-point arithmetic. The library can thus be used to performe super fast mp3 encoding on architectures without a FPU, such as armel, etc</Description>
|
||||
<Archive sha1sum="c1421ce3331ad91b4c1e6bd7cd7fbda41d302d18" type="targz">https://github.com/toots/shine/releases/download/3.1.1/shine-3.1.1.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>shine</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>shine-devel</Name>
|
||||
<Summary>Header files for shine.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">shine</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>3.1.1</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
|
||||
Executable
+29
@@ -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/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.system("mkdir build_")
|
||||
shelltools.cd("build_")
|
||||
|
||||
shelltools.system("cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_LIBDIR=lib")
|
||||
|
||||
def build():
|
||||
shelltools.cd("build_")
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
shelltools.cd("build_")
|
||||
autotools.rawInstall("DESTDIR=%s" %get.installDIR())
|
||||
|
||||
shelltools.cd("..")
|
||||
pisitools.dodoc("Changelog", "LICENSE", "README*")
|
||||
|
||||
Executable
+55
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>vid.stab</Name>
|
||||
<Homepage>http://www.rowetel.com/?page_id=452</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPL</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Video stabilization library</Summary>
|
||||
<Description>Video stabilization library</Description>
|
||||
<Archive sha1sum="b3743fbaa1603422fb5a34026058aa07a255c83c" type="targz">https://github.com/georgmartius/vid.stab/archive/v1.1.0.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>vid.stab</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libgomp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>vid.stab-devel</Name>
|
||||
<Summary>Header files for vid.stab.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">vid.stab</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-01-14</Date>
|
||||
<Version>1.1.0</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
|
||||
Executable
+21
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
NoStrip=["/usr/lib"]
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s INSTALL_PREFIX=/usr" % get.installDIR())
|
||||
pisitools.insinto("/usr/bin", "wrapper/vmafossexec")
|
||||
pisitools.dodoc("CHANGELOG.md", "LICENSE", "NOTICE.md", "FAQ.md", "README.md")
|
||||
|
||||
@@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>vmaf</Name>
|
||||
<Homepage>https://github.com/netflix/vmaf/</Homepage>
|
||||
<Packager>
|
||||
<Name>Idris KALP</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>Apache</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Perceptual video quality assessment algorithm based on multi-method fusion</Summary>
|
||||
<Description>VMAF is a perceptual video quality assessment algorithm developed by Netflix. VMAF Development Kit (VDK) is a software package that contains the VMAF algorithm implementation, as well as a set of tools that allows a user to train and test a custom VMAF model.</Description>
|
||||
<Archive sha1sum="c050ada8ec285c56d4d40e16f03e451787c0999e" type="targz">https://github.com/Netflix/vmaf/archive/v1.3.15.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>vmaf</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>vmaf-devel</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2019-10-27</Date>
|
||||
<Version>1.3.15</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Idris KALP</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
Executable
+23
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.system("sed -i -e 's|$(CC) -o $@ $(OBJCLI) $(LDFLAGS) -L. -lxavs|$(CC) -o $@ $(OBJCLI) -L. -lxavs $(LDFLAGS)|' Makefile")
|
||||
shelltools.system("sed -i -e 's|xavs$(EXE): $(OBJCLI) $(SONAME)|xavs$(EXE): $(OBJCLI) $(SONAME) libxavs.a|' Makefile")
|
||||
autotools.configure()
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" %get.installDIR())
|
||||
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
--- xavs-0.1.55/configure~ 2011-11-24 10:42:06.000000000 +0100
|
||||
+++ xavs-0.1.55/configure 2011-11-24 11:49:04.908528371 +0100
|
||||
@@ -404,8 +404,7 @@ if [ "$pic" = "yes" ] ; then
|
||||
fi
|
||||
|
||||
if [ "$debug" != "yes" -a "$gprof" != "yes" ]; then
|
||||
- CFLAGS="$CFLAGS -s -fomit-frame-pointer"
|
||||
- LDFLAGS="$LDFLAGS -s"
|
||||
+ CFLAGS="$CFLAGS -fomit-frame-pointer"
|
||||
fi
|
||||
|
||||
if [ "$debug" = "yes" ]; then
|
||||
@@ -0,0 +1,38 @@
|
||||
From 8300fbf4918bca2af1af2aee6a337815e90b51e1 Mon Sep 17 00:00:00 2001
|
||||
From: Greg Nietsky <gregory@distrotech.co.za>
|
||||
Date: Thu, 21 Nov 2013 12:11:32 +0200
|
||||
Subject: [PATCH] Remove duplicate deffinitions
|
||||
|
||||
---
|
||||
common/i386/cpu-a.asm | 1 -
|
||||
common/i386/deblock_inter.asm | 2 --
|
||||
2 files changed, 3 deletions(-)
|
||||
|
||||
diff --git a/common/i386/cpu-a.asm b/common/i386/cpu-a.asm
|
||||
index ad883cf..cf6a4eb 100644
|
||||
--- a/common/i386/cpu-a.asm
|
||||
+++ b/common/i386/cpu-a.asm
|
||||
@@ -37,7 +37,6 @@ SECTION .text
|
||||
|
||||
cglobal xavs_cpu_cpuid_test
|
||||
cglobal xavs_cpu_cpuid
|
||||
-cglobal xavs_emms
|
||||
|
||||
ALIGN 16
|
||||
;-----------------------------------------------------------------------------
|
||||
diff --git a/common/i386/deblock_inter.asm b/common/i386/deblock_inter.asm
|
||||
index d6d7208..84e96f6 100644
|
||||
--- a/common/i386/deblock_inter.asm
|
||||
+++ b/common/i386/deblock_inter.asm
|
||||
@@ -9,8 +9,6 @@ dw_4: times 8 dw 4
|
||||
|
||||
|
||||
SECTION .text
|
||||
-cglobal xavs_deblock_v_chroma_mmxext
|
||||
-cglobal xavs_deblock_h_chroma_mmxext
|
||||
|
||||
|
||||
; out: %4 = |%1-%2|>%3
|
||||
--
|
||||
2.6.2
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
--- xavs/Makefile.orig 2011-07-01 20:23:47.000000000 +0200
|
||||
+++ xavs/Makefile 2011-07-01 21:16:09.407118004 +0200
|
||||
@@ -59,8 +59,8 @@
|
||||
$(SONAME): .depend $(OBJS) $(OBJASM)
|
||||
$(CC) -shared -o $@ $(OBJS) $(OBJASM) -Wl,-soname,$(SOFLAGS) $(LDFLAGS)
|
||||
|
||||
-xavs$(EXE): $(OBJCLI) libxavs.a
|
||||
- $(CC) -o $@ $+ $(LDFLAGS)
|
||||
+xavs$(EXE): $(OBJCLI) $(SONAME)
|
||||
+ $(CC) -o $@ $(OBJCLI) $(LDFLAGS) -L. -lxavs
|
||||
|
||||
xavsvfw.dll: libxavs.a $(wildcard vfw/*.c vfw/*.h)
|
||||
make -C vfw/build/cygwin
|
||||
@@ -0,0 +1,46 @@
|
||||
From 358587b8a881bca4d933b7a1dd9471322b9f4bd7 Mon Sep 17 00:00:00 2001
|
||||
From: Greg Nietsky <gregory@distrotech.co.za>
|
||||
Date: Thu, 21 Nov 2013 12:05:25 +0200
|
||||
Subject: [PATCH 1/2] Add support for x32 yasm
|
||||
|
||||
---
|
||||
configure | 8 +++++++-
|
||||
1 file changed, 7 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/configure b/configure
|
||||
index 2026833..e7c1ce3 100755
|
||||
--- a/configure
|
||||
+++ b/configure
|
||||
@@ -155,6 +155,7 @@ host_cpu="${host%%-*}"
|
||||
host="${host#*-}"
|
||||
host_vendor="${host%%-*}"
|
||||
host_os="${host#*-}"
|
||||
+host_ver="${host_os#*-}"
|
||||
|
||||
case $host_os in
|
||||
beos*)
|
||||
@@ -191,6 +192,9 @@ case $host_os in
|
||||
SYS="LINUX"
|
||||
CFLAGS="$CFLAGS -DHAVE_MALLOC_H"
|
||||
LDFLAGS="$LDFLAGS -lm"
|
||||
+ if [ "${host_ver}" == "gnux32" ];then
|
||||
+ ABI="X32";
|
||||
+ fi;
|
||||
;;
|
||||
cygwin*)
|
||||
SYS="MINGW"
|
||||
@@ -242,8 +246,10 @@ case $host_cpu in
|
||||
LDFLAGS="$LDFLAGS -arch x86_64"
|
||||
elif [ "$SYS" = MINGW ]; then
|
||||
ASFLAGS="$ASFLAGS -f win32 -m amd64 -DPREFIX"
|
||||
+ elif [ "$ABI" = X32 ]; then
|
||||
+ ASFLAGS="$ASFLAGS -f elfx32 -m amd64"
|
||||
else
|
||||
- ASFLAGS="$ASFLAGS -f elf -m amd64"
|
||||
+ ASFLAGS="$ASFLAGS -f elf64 -m amd64"
|
||||
fi
|
||||
;;
|
||||
powerpc|powerpc64)
|
||||
--
|
||||
2.6.2
|
||||
|
||||
Executable
+60
@@ -0,0 +1,60 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>xavs</Name>
|
||||
<Homepage>http://xavs.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPL</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>XAVS is to implement high quality encoder and decoder of the Audio Video Standard of China (AVS).</Summary>
|
||||
<Description>XAVS is to implement high quality encoder and decoder of the Audio Video Standard of China (AVS).</Description>
|
||||
<Archive sha1sum="e5f71203a632ac2a97f67e86f77b00910853cd60" type="tarxz">https://sourceforge.net/projects/pisilinux/files/source/xavs-0.1.55.tar.xz</Archive>
|
||||
<Patches>
|
||||
<Patch level="1">xavs-dynamic-xavs.patch</Patch>
|
||||
<Patch level="1">xavs-0.1.55-dont-strip-symbols.patch</Patch>
|
||||
<Patch level="1">xavs-dup-asm.patch</Patch>
|
||||
<Patch level="1">xavs-x32-yasm.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>xavs</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>xavs-devel</Name>
|
||||
<Summary>Header files for xavs.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">xavs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-01-14</Date>
|
||||
<Version>0.1.55</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
|
||||
Executable
+39
@@ -0,0 +1,39 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
NoStrip=["/usr/lib"]
|
||||
|
||||
def setup():
|
||||
shelltools.cd("build/linux")
|
||||
autotools.rawConfigure("--prefix=/usr \
|
||||
--extra-ldflags='-Wl,-z,noexecstack' \
|
||||
--chroma-format='all' \
|
||||
--enable-shared \
|
||||
--enable-lto \
|
||||
--enable-pic \
|
||||
--disable-swscale \
|
||||
--disable-lavf \
|
||||
--disable-ffms \
|
||||
--disable-gpac \
|
||||
")
|
||||
|
||||
def build():
|
||||
shelltools.cd("build/linux")
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
shelltools.cd("build/linux")
|
||||
autotools.rawInstall("DESTDIR=%s" %get.installDIR())
|
||||
pisitools.remove("/usr/lib/libxavs2.a")
|
||||
shelltools.cd("../..")
|
||||
pisitools.dodoc("COPYING", "README.md")
|
||||
|
||||
Executable
+54
@@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>xavs2</Name>
|
||||
<Homepage>https://github.com/pkuvcl/xavs2/</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPL</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Open-Source encoder of AVS2-P2/IEEE1857.4 video coding standard</Summary>
|
||||
<Description>Open-Source encoder of AVS2-P2/IEEE1857.4 video coding standard</Description>
|
||||
<Archive sha1sum="4e128fc1851fccdc0abae677ff48cefb0664b040" type="targz">https://github.com/pkuvcl/xavs2/archive/1.3.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>xavs2</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>xavs2-devel</Name>
|
||||
<Summary>Header files for xavs2.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">xavs2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-01-14</Date>
|
||||
<Version>1.3</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
|
||||
+486
-18
@@ -1729,7 +1729,7 @@
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libusb</Dependency>
|
||||
<Dependency>python3</Dependency>
|
||||
<Dependency release="5">libftdi</Dependency>
|
||||
<Dependency release="6">libftdi</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/python*</Path>
|
||||
@@ -1740,7 +1740,7 @@
|
||||
<Summary xml:lang="en">Development files for libftdi</Summary>
|
||||
<Summary xml:lang="tr">libftdi için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="5">libftdi</Dependency>
|
||||
<Dependency release="6">libftdi</Dependency>
|
||||
<Dependency>libusb-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
@@ -1752,6 +1752,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2020-01-14</Date>
|
||||
<Version>1.4</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-08-20</Date>
|
||||
<Version>1.4</Version>
|
||||
@@ -1806,7 +1813,7 @@
|
||||
<Summary xml:lang="tr">Linux resmi Bluetooth protokol yığını</Summary>
|
||||
<Description xml:lang="en">bluez contains the tools and libraries that provides support for the core Bluetooth layers and protocols.</Description>
|
||||
<Description xml:lang="tr">Bu projenin genel amacı Linux'ta Bluetooth kablosuz standartların ayrıntılarını yerine getirmektir.</Description>
|
||||
<Archive type="tarxz" sha1sum="a59289c91ccb7fac248e916838d4e66d7936151e" name="bluez-5.52.tar.xz">https://mirrors.edge.kernel.org/pub/linux/bluetooth/bluez-5.52.tar.xz</Archive>
|
||||
<Archive type="tarxz" sha1sum="75e907922a62588c12d5642293403be0625b4d02" name="bluez-5.52.tar.xz">https://mirrors.edge.kernel.org/pub/linux/bluetooth/bluez-5.52.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cups-devel</Dependency>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
@@ -1850,6 +1857,7 @@
|
||||
<Path fileType="data">/var/lib/bluetooth</Path>
|
||||
<Path fileType="data">/usr/share/alsa/bluetooth.conf</Path>
|
||||
<Path fileType="data">/usr/share/dbus-1</Path>
|
||||
<Path fileType="data">/usr/share/zsh</Path>
|
||||
<Path fileType="config">/etc</Path>
|
||||
</Files>
|
||||
<Provides>
|
||||
@@ -5549,7 +5557,7 @@
|
||||
<Description xml:lang="en">lirc is a package that allows you to decode and send infra-red signals of many (but not all) commonly used remote controls.</Description>
|
||||
<Description xml:lang="tr">lirc, kızılötesi sinyalleriyle yaygın uzaktan kumandaları denetlemeye olanak veren bir Linux altyapısıdır.</Description>
|
||||
<Description xml:lang="es">LIRC permite decodificar y transmitir señales infrarrojos compatible con muchos (pero no de todos) controles remotos comúnes.</Description>
|
||||
<Archive type="tarbz2" sha1sum="9d6f6d18ac566a96ef4ca1d6909a4e8bc517d48a" name="download">https://sourceforge.net/projects/lirc/files/LIRC/0.10.1/lirc-0.10.1.tar.bz2/download</Archive>
|
||||
<Archive type="tarbz2" sha1sum="9d6f6d18ac566a96ef4ca1d6909a4e8bc517d48a" name="lirc-0.10.1.tar.bz2">https://sourceforge.net/projects/lirc/files/LIRC/0.10.1/lirc-0.10.1.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>libftdi-devel</Dependency>
|
||||
@@ -9034,6 +9042,58 @@
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<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>
|
||||
<PartOf>hardware.graphics</PartOf>
|
||||
<Summary xml:lang="en">Intel media sdk dispatcher</Summary>
|
||||
<Description xml:lang="en">Intel media sdk dispatcher</Description>
|
||||
<Archive type="targz" sha1sum="6ee528460d6b6d31c02c2b9528e6f91326345143" name="1.25.tar.gz">https://github.com/lu-zero/mfx_dispatch/archive/1.25.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libdrm-devel</Dependency>
|
||||
<Dependency>libva-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>hardware/graphics/libmfx/pspec.xml</SourceURI>
|
||||
</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="1">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>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>libusbmuxd</Name>
|
||||
@@ -35247,6 +35307,40 @@
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>ffnvcodec</Name>
|
||||
<Homepage>https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>multimedia.misc</PartOf>
|
||||
<Summary xml:lang="en">FFmpeg version of headers required to interface with Nvidias codec APIs</Summary>
|
||||
<Description xml:lang="en">FFmpeg version of headers required to interface with Nvidias codec APIs</Description>
|
||||
<Archive type="tarxz" sha1sum="f060706fabaf83e94bf9dfaa6848048f0753eaba" name="ffnvcodec-9.1.23.1.tar.xz">https://sourceforge.net/projects/pisilinux/files/source/ffnvcodec-9.1.23.1.tar.xz</Archive>
|
||||
<SourceURI>multimedia/misc/ffnvcodec/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>ffnvcodec</Name>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-01-14</Date>
|
||||
<Version>9.1.23.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>libbluray</Name>
|
||||
@@ -40016,6 +40110,51 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>vmaf</Name>
|
||||
<Homepage>https://github.com/netflix/vmaf/</Homepage>
|
||||
<Packager>
|
||||
<Name>Idris KALP</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>Apache</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>multimedia.video</PartOf>
|
||||
<Summary xml:lang="en">Perceptual video quality assessment algorithm based on multi-method fusion</Summary>
|
||||
<Description xml:lang="en">VMAF is a perceptual video quality assessment algorithm developed by Netflix. VMAF Development Kit (VDK) is a software package that contains the VMAF algorithm implementation, as well as a set of tools that allows a user to train and test a custom VMAF model.</Description>
|
||||
<Archive type="targz" sha1sum="c050ada8ec285c56d4d40e16f03e451787c0999e" name="v1.3.15.tar.gz">https://github.com/Netflix/vmaf/archive/v1.3.15.tar.gz</Archive>
|
||||
<SourceURI>multimedia/video/vmaf/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>vmaf</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>vmaf-devel</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2019-10-27</Date>
|
||||
<Version>1.3.15</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Idris KALP</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>xine-lib</Name>
|
||||
@@ -42280,6 +42419,54 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>xavs2</Name>
|
||||
<Homepage>https://github.com/pkuvcl/xavs2/</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPL</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>multimedia.video</PartOf>
|
||||
<Summary xml:lang="en">Open-Source encoder of AVS2-P2/IEEE1857.4 video coding standard</Summary>
|
||||
<Description xml:lang="en">Open-Source encoder of AVS2-P2/IEEE1857.4 video coding standard</Description>
|
||||
<Archive type="targz" sha1sum="4e128fc1851fccdc0abae677ff48cefb0664b040" name="1.3.tar.gz">https://github.com/pkuvcl/xavs2/archive/1.3.tar.gz</Archive>
|
||||
<SourceURI>multimedia/video/xavs2/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>xavs2</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>xavs2-devel</Name>
|
||||
<Summary xml:lang="en">Header files for xavs2.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="1">xavs2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-01-14</Date>
|
||||
<Version>1.3</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>schroedinger</Name>
|
||||
@@ -44132,6 +44319,55 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>vid.stab</Name>
|
||||
<Homepage>http://www.rowetel.com/?page_id=452</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPL</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>multimedia.video</PartOf>
|
||||
<Summary xml:lang="en">Video stabilization library</Summary>
|
||||
<Description xml:lang="en">Video stabilization library</Description>
|
||||
<Archive type="targz" sha1sum="b3743fbaa1603422fb5a34026058aa07a255c83c" name="v1.1.0.tar.gz">https://github.com/georgmartius/vid.stab/archive/v1.1.0.tar.gz</Archive>
|
||||
<SourceURI>multimedia/video/vid.stab/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>vid.stab</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libgomp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>vid.stab-devel</Name>
|
||||
<Summary xml:lang="en">Header files for vid.stab.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="1">vid.stab</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-01-14</Date>
|
||||
<Version>1.1.0</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>vo-amrwbenc</Name>
|
||||
@@ -44205,6 +44441,60 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>xavs</Name>
|
||||
<Homepage>http://xavs.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPL</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>multimedia.video</PartOf>
|
||||
<Summary xml:lang="en">XAVS is to implement high quality encoder and decoder of the Audio Video Standard of China (AVS).</Summary>
|
||||
<Description xml:lang="en">XAVS is to implement high quality encoder and decoder of the Audio Video Standard of China (AVS).</Description>
|
||||
<Archive type="tarxz" sha1sum="e5f71203a632ac2a97f67e86f77b00910853cd60" name="xavs-0.1.55.tar.xz">https://sourceforge.net/projects/pisilinux/files/source/xavs-0.1.55.tar.xz</Archive>
|
||||
<Patches>
|
||||
<Patch level="1">xavs-dynamic-xavs.patch</Patch>
|
||||
<Patch level="1">xavs-0.1.55-dont-strip-symbols.patch</Patch>
|
||||
<Patch level="1">xavs-dup-asm.patch</Patch>
|
||||
<Patch level="1">xavs-x32-yasm.patch</Patch>
|
||||
</Patches>
|
||||
<SourceURI>multimedia/video/xavs/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>xavs</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>xavs-devel</Name>
|
||||
<Summary xml:lang="en">Header files for xavs.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="1">xavs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-01-14</Date>
|
||||
<Version>0.1.55</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>libmatroska</Name>
|
||||
@@ -48920,6 +49210,56 @@ cleaner, which will allow to add new features in the future.</Description>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>libsoxr</Name>
|
||||
<Homepage>http://sourceforge.net/p/soxr/wiki/Home/</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPL</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>multimedia.sound</PartOf>
|
||||
<Summary xml:lang="en">The SoX Resampler library that aims to give fast and high quality results for any constant resampling ratio</Summary>
|
||||
<Description xml:lang="en">The SoX Resampler library that aims to give fast and high quality results for any constant resampling ratio</Description>
|
||||
<Archive type="tarxz" sha1sum="32ea46b1a8c0c15f835422892d02fce8286aec3c" name="soxr-0.1.3-Source.tar.xz">https://sourceforge.net/projects/soxr/files/soxr-0.1.3-Source.tar.xz</Archive>
|
||||
<SourceURI>multimedia/sound/libsoxr/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>libsoxr</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libgomp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>libsoxr-devel</Name>
|
||||
<Summary xml:lang="en">Header files for libsoxr.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="1">libsoxr</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>0.1.3</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>decibel-audio-player</Name>
|
||||
@@ -49703,7 +50043,7 @@ cleaner, which will allow to add new features in the future.</Description>
|
||||
<PartOf>multimedia.sound</PartOf>
|
||||
<Summary xml:lang="en">A cross-platform C++ and C library to decode tracked music files (modules) into a raw PCM audio stream.</Summary>
|
||||
<Description xml:lang="en">A cross-platform C++ and C library to decode tracked music files (modules) into a raw PCM audio stream.</Description>
|
||||
<Archive type="targz" sha1sum="31639c0e3d1d19be87371884c92324fe7b18c595" name="libopenmpt-0.4.9+release.autotools.tar.gz">https://lib.openmpt.org/files/libopenmpt/src/libopenmpt-0.4.9+release.autotools.tar.gz</Archive>
|
||||
<Archive type="targz" sha1sum="edd05d565950601c2bcb11e92d7dba95dd752a4e" name="libopenmpt-0.4.11+release.autotools.tar.gz">https://lib.openmpt.org/files/libopenmpt/src/libopenmpt-0.4.11+release.autotools.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>flac-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
@@ -49749,8 +50089,8 @@ cleaner, which will allow to add new features in the future.</Description>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2019-10-26</Date>
|
||||
<Version>0.4.9</Version>
|
||||
<Date>2020-01-14</Date>
|
||||
<Version>0.4.11</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
@@ -50155,7 +50495,7 @@ cleaner, which will allow to add new features in the future.</Description>
|
||||
<Summary xml:lang="en">Development files for speex</Summary>
|
||||
<Summary xml:lang="tr">speex için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="5">speex</Dependency>
|
||||
<Dependency release="6">speex</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
@@ -50175,7 +50515,7 @@ cleaner, which will allow to add new features in the future.</Description>
|
||||
<Dependency>speexdsp-32bit</Dependency>
|
||||
</BuildDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="5">speex</Dependency>
|
||||
<Dependency release="6">speex</Dependency>
|
||||
<Dependency>libogg-32bit</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
@@ -50183,6 +50523,13 @@ cleaner, which will allow to add new features in the future.</Description>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2020-01-14</Date>
|
||||
<Version>1.2.0</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-08-03</Date>
|
||||
<Version>1.2.0</Version>
|
||||
@@ -51090,6 +51437,55 @@ cleaner, which will allow to add new features in the future.</Description>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>shine</Name>
|
||||
<Homepage>GPL2</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPL2</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>multimedia.sound</PartOf>
|
||||
<Summary xml:lang="en">Super fast fixed-point MP3 encoder</Summary>
|
||||
<Description xml:lang="en">shine is a blazing fast mp3 encoding library implemented in fixed-point arithmetic. The library can thus be used to performe super fast mp3 encoding on architectures without a FPU, such as armel, etc</Description>
|
||||
<Archive type="targz" sha1sum="c1421ce3331ad91b4c1e6bd7cd7fbda41d302d18" name="shine-3.1.1.tar.gz">https://github.com/toots/shine/releases/download/3.1.1/shine-3.1.1.tar.gz</Archive>
|
||||
<SourceURI>multimedia/sound/shine/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>shine</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>shine-devel</Name>
|
||||
<Summary xml:lang="en">Header files for shine.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="1">shine</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>3.1.1</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>libgme</Name>
|
||||
@@ -51245,7 +51641,7 @@ cleaner, which will allow to add new features in the future.</Description>
|
||||
<Summary xml:lang="en">Development files for pulseaudio-libs</Summary>
|
||||
<Summary xml:lang="tr">pulseaudio-libs için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="11">pulseaudio-libs</Dependency>
|
||||
<Dependency release="12">pulseaudio-libs</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
@@ -51272,7 +51668,7 @@ cleaner, which will allow to add new features in the future.</Description>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libcap</Dependency>
|
||||
<Dependency>libtool-ltdl</Dependency>
|
||||
<Dependency release="11">pulseaudio-libs</Dependency>
|
||||
<Dependency release="12">pulseaudio-libs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/pulseaudio</Path>
|
||||
@@ -51330,7 +51726,7 @@ cleaner, which will allow to add new features in the future.</Description>
|
||||
<Dependency>libtool-ltdl-32bit</Dependency>
|
||||
</BuildDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="11">pulseaudio-libs</Dependency>
|
||||
<Dependency release="12">pulseaudio-libs</Dependency>
|
||||
<Dependency>dbus-32bit</Dependency>
|
||||
<Dependency>glib2-32bit</Dependency>
|
||||
<Dependency>libsndfile-32bit</Dependency>
|
||||
@@ -51341,6 +51737,13 @@ cleaner, which will allow to add new features in the future.</Description>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="12">
|
||||
<Date>2020-01-14</Date>
|
||||
<Version>13.0</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>İdris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2019-12-04</Date>
|
||||
<Version>13.0</Version>
|
||||
@@ -53879,6 +54282,50 @@ cleaner, which will allow to add new features in the future.</Description>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>libzimg</Name>
|
||||
<Homepage>https://github.com/sekrit-twc/zimg</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>WTFPL</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>multimedia.graphics</PartOf>
|
||||
<Summary xml:lang="en">Scaling, colorspace conversion, and dithering library</Summary>
|
||||
<Description xml:lang="en">The "z" library implements the commonly required image processing basics of scaling, colorspace conversion, and depth conversion.</Description>
|
||||
<Archive type="targz" sha1sum="58951dca1da1a57f35216f6d84b2c0c6f4e60195" name="release-2.9.2.tar.gz">https://github.com/sekrit-twc/zimg/archive/release-2.9.2.tar.gz</Archive>
|
||||
<SourceURI>multimedia/graphics/libzimg/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>libzimg</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>libzimg-devel</Name>
|
||||
<Summary xml:lang="en">Header files for libzimg.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="1">libzimg</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>2.9.2</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>libmng</Name>
|
||||
@@ -64000,7 +64447,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
|
||||
<Description xml:lang="en">Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL (Corba and Microsoft flavors) and to some extent PHP, C#, and D.</Description>
|
||||
<Description xml:lang="tr">Doxygen C++, C, Java, Objective-C, Python, IDL (Corba ve Microsoft ile ilgili diğerleri ) ve PHP, C# ve D'yi de kapsayan diller için bir dokümantasyon sistemidir.</Description>
|
||||
<Description xml:lang="es">Doxygen es un sistema de documentación para C++, C, Java, Objective-C, Python, IDL (versiones Corba y Microsoft) y hasta cierto punto también PHP, C#, y D.</Description>
|
||||
<Archive type="targz" sha1sum="912a36bad9b81ef27a0ff0208b459c500412c6b2" name="doxygen-1.8.16.src.tar.gz">http://doxygen.nl/files/doxygen-1.8.16.src.tar.gz</Archive>
|
||||
<Archive type="targz" sha1sum="041c6b860853a2259af3fcb8c628a645d99d4de4" name="doxygen-1.8.17.src.tar.gz">http://doxygen.nl/files/doxygen-1.8.17.src.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>git</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
@@ -64019,6 +64466,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2020-01-14</Date>
|
||||
<Version>1.8.17</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2019-09-18</Date>
|
||||
<Version>1.8.16</Version>
|
||||
@@ -74968,7 +75422,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
|
||||
<Summary xml:lang="en">Development files for libnl</Summary>
|
||||
<Summary xml:lang="tr">libnl için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="5">libnl</Dependency>
|
||||
<Dependency release="6">libnl</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
@@ -74976,6 +75430,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2020-01-14</Date>
|
||||
<Version>3.5.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Blue DeviL</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2019-12-05</Date>
|
||||
<Version>3.5.0</Version>
|
||||
@@ -85701,10 +86162,10 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
<Summary xml:lang="tr">TDB veritabanına erişim için gerekli kitaplıklar</Summary>
|
||||
<Description xml:lang="en">libtdb contains C library and Python bindings to access to a trivial database. TDB is very much like GDBM and BSDDB except that it allows multiple simultaneous writers and uses locking internally to keep writers from trampling on each other.</Description>
|
||||
<Description xml:lang="tr">libtdb basit bir veritabanı olan TDB ile iletişime geçmek için gerekli C ve Python kitaplıklarını içerir.</Description>
|
||||
<Archive type="targz" sha1sum="13b369b92d4cdc8057d90fc2b79657c9f5b72ec6" name="tdb-1.3.16.tar.gz">https://www.samba.org/ftp/tdb/tdb-1.3.16.tar.gz</Archive>
|
||||
<Archive type="targz" sha1sum="a8b7de5efceb288d4ad3174866111452ef5bf21b" name="tdb-1.4.3.tar.gz">https://www.samba.org/ftp/tdb/tdb-1.4.3.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libxslt</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>docbook-xsl</Dependency>
|
||||
<Dependency>libbsd-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
@@ -85713,7 +86174,7 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
<Package>
|
||||
<Name>libtdb</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python</Dependency>
|
||||
<Dependency>python3</Dependency>
|
||||
<Dependency>libbsd</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
@@ -85728,7 +86189,7 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
<Summary xml:lang="en">Development files for libtdb</Summary>
|
||||
<Summary xml:lang="tr">libtdb için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="7">libtdb</Dependency>
|
||||
<Dependency release="8">libtdb</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
@@ -85736,6 +86197,13 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2020-01-14</Date>
|
||||
<Version>1.4.3</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>İdris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2018-08-03</Date>
|
||||
<Version>1.3.16</Version>
|
||||
|
||||
@@ -1 +1 @@
|
||||
579b549edf539c3ccc17c211de146ed480dfa6c9
|
||||
0e0356522145c1ca9b7e47834484bafe29065c11
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
58b8472338a2081e448d5c039c1861f2541f04ab
|
||||
d94082437686eb02326f6899159f52ad37755d95
|
||||
Reference in New Issue
Block a user