Merge pull request #8385 from blue-devil/master

sound libraries and tools from contrib all clean and updated
This commit is contained in:
Blue DeviL
2020-04-08 20:29:27 +00:00
committed by GitHub
16 changed files with 28202 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
#!/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 shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
options = "--disable-static"
if get.buildTYPE() == "_emul32":
options += \
"\
--libdir=/usr/lib32 \
"
shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
autotools.configure(options)
# fix unused direct dependency analysis
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
if get.buildTYPE() != "_emul32":
pisitools.dodoc("AUTHORS", "COPYING", "README.md")
+82
View File
@@ -0,0 +1,82 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libopusenc</Name>
<Homepage>http://www.opus-codec.org/</Homepage>
<Packager>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Packager>
<PartOf>multimedia.misc</PartOf>
<License>BSD</License>
<IsA>library</IsA>
<Summary>Library for encoding .opus audio files and live streams.</Summary>
<Description>The libopusenc libraries provide a high-level API for encoding .opus files. libopusenc depends only on libopus.</Description>
<Archive sha1sum="0f107876925141fe1a8840f4d602d5b0771be105" type="targz">https://archive.mozilla.org/pub/opus/libopusenc-0.2.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>libopus-devel</Dependency>
<Dependency>libopus-32bit</Dependency>
<Dependency>doxygen</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libopusenc</Name>
<Summary>Library for encoding .opus audio files and live streams.</Summary>
<RuntimeDependencies>
<Dependency>libopus</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<Package>
<Name>libopusenc-devel</Name>
<Summary>Development files for libopusenc</Summary>
<RuntimeDependencies>
<Dependency release="current">libopusenc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib32/pkgconfig</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<Package>
<Name>libopusenc-docs</Name>
<Summary>document files for libopusenc</Summary>
<RuntimeDependencies>
<Dependency release="current">libopusenc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="doc">/usr/share/doc/</Path>
</Files>
</Package>
<Package>
<Name>libopusenc-32bit</Name>
<PartOf>emul32</PartOf>
<Summary>32-bit shared libraries for libopusenc</Summary>
<BuildType>emul32</BuildType>
<RuntimeDependencies>
<Dependency release="current">libopusenc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib32</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-06-24</Date>
<Version>0.2.1</Version>
<Comment>First build.</Comment>
<Email>wascheme@tuta.io</Email>
<Name>fury</Name>
</Update>
</History>
</PISI>
@@ -0,0 +1,26 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libopusenc</Name>
<Summary xml:lang="tr">Opus biçemindeki ses ve canlı yayınları kodlayabilmek için kitaplık.</Summary>
<Description xml:lang="tr">libopusenc, Opus biçemindeki ses ve canlı yayınları kodlayabilmek için kitaplık sunar.</Description>
</Source>
<Package>
<Name>libopusenc-docs</Name>
<Summary xml:lang="tr">libopusenc için belgelendirme dosyaları</Summary>
<Description xml:lang="tr">libopusenc-docs, libopusenc için belgelendirme dosyalarını içerir.</Description>
</Package>
<Package>
<Name>libopusenc-devel</Name>
<Summary xml:lang="tr">libopusenc için geliştirme dosyaları</Summary>
<Description xml:lang="tr">libopusenc-devel, libopusenc için geliştirme dosyalarını içerir.</Description>
</Package>
<Package>
<Name>libopusenc-32bit</Name>
<Summary xml:lang="tr">libopusenc için 32-bit paylaşımlı kitaplıklar</Summary>
<Description xml:lang="tr">libopusenc-32bit, libopusenc için 32-bit paylaşımlı kitaplıklar sunar.</Description>
</Package>
</PISI>
File diff suppressed because it is too large Load Diff
+1
View File
@@ -0,0 +1 @@
9bbe3603b14955583bc3ae620ad0b153ecda4127
Binary file not shown.
+1
View File
@@ -0,0 +1 @@
3883db3068a1141bc1da660632d4e8612dbaafb4
+22
View File
@@ -0,0 +1,22 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pisitools
from pisi.actionsapi import autotools
from pisi.actionsapi import get
def setup():
# suppress compiler warnings
pisitools.cflags.add("-Wno-cast-function-type -Wno-enum-compare -Wno-incompatible-pointer-types")
autotools.configure("--enable-static=no")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README*")
+63
View File
@@ -0,0 +1,63 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libfishsound</Name>
<Homepage>https://www.xiph.org/fishsound/</Homepage>
<Packager>
<Name>Blue DeviL</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>multimedia.sound</PartOf>
<License>BSD</License>
<IsA>library</IsA>
<Summary>A simple programming interface that wraps Xiph.Org audio codecs</Summary>
<Description>libfishsound provides a simple programming interface for decoding and encoding audio data using the Xiph.org codecs (FLAC, Speex and Vorbis).</Description>
<Archive sha1sum="5263dfaa12dce71e30c5d80f871d92869c6b5ce2" type="targz">http://downloads.xiph.org/releases/libfishsound/libfishsound-1.0.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>libvorbis-devel</Dependency>
<Dependency>speex-devel</Dependency>
<Dependency>flac-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libfishsound</Name>
<Summary>A simple programming interface that wraps Xiph.Org audio codecs</Summary>
<RuntimeDependencies>
<Dependency>libvorbis</Dependency>
<Dependency>speex</Dependency>
<Dependency>flac</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<Package>
<Name>libfishsound-devel</Name>
<Summary>Development files for libfishsound</Summary>
<RuntimeDependencies>
<Dependency release="current">libfishsound</Dependency>
<Dependency>libvorbis-devel</Dependency>
<Dependency>speex-devel</Dependency>
<Dependency>flac-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-01-02</Date>
<Version>1.0.0</Version>
<Comment>First pisi release</Comment>
<Name>Blue DeviL</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,15 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libfishsound</Name>
<Summary xml:lang="tr">libfishsound Xiph.org kodekleri(FLAC, Speex ve Vorbis) kullanarak ses verisi enkode ve dekode edebilir.</Summary>
<Description xml:lang="tr">libfishsound Xiph.org kodekleri(FLAC, Speex ve Vorbis) kullanarak ses verisi enkode ve dekode etmek için kitaplık dosyaları sunar.</Description>
<Summary xml:lang="fr">La librairie pour fichiers au format média Oggz.</Summary>
</Source>
<Package>
<Name>libfishsound-devel</Name>
<Summary xml:lang="tr">libfishsound için geliştirme dosyaları</Summary>
<Description xml:lang="tr">libfishsound-devel, libfishsound için geliştirme dosyaları içerir</Description>
</Package>
</PISI>
+24
View File
@@ -0,0 +1,24 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pisitools
from pisi.actionsapi import autotools
from pisi.actionsapi import get
def setup():
# suppress compiler warnings
pisitools.cflags.add("-Wno-int-to-pointer-cast -Wno-cast-function-type -Wno-pointer-to-int-cast")
autotools.configure("--enable-static=no")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README*")
pisitools.insinto("/usr/share/bash-completion/completions/","bash-completion/oggz")
+60
View File
@@ -0,0 +1,60 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>liboggz</Name>
<Homepage>https://www.xiph.org/oggz/</Homepage>
<Packager>
<Name>Blue DeviL</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>multimedia.sound</PartOf>
<License>BSD</License>
<IsA>app::console</IsA>
<IsA>library</IsA>
<Summary>A simple programming interface for reading and writing Ogg files and streams.</Summary>
<Description>liboggz is a C library for reading and writing Ogg files and streams. It offers various improvements over the reference libogg, including support for seeking, validation and timestamp interpretation.</Description>
<Archive sha1sum="3540190c8c9a31d834aa7794ef991bbab699f4de" type="targz">http://downloads.xiph.org/releases/liboggz/liboggz-1.1.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>libogg-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>liboggz</Name>
<Summary>A simple programming interface for reading and writing Ogg files and streams.</Summary>
<RuntimeDependencies>
<Dependency>libogg</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<Package>
<Name>liboggz-devel</Name>
<Summary>Development files for libfishsound</Summary>
<RuntimeDependencies>
<Dependency release="current">liboggz</Dependency>
<Dependency>libogg-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-01-02</Date>
<Version>1.1.1</Version>
<Comment>First pisi release</Comment>
<Name>Blue DeviL</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
</History>
</PISI>
+15
View File
@@ -0,0 +1,15 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>liboggz</Name>
<Summary xml:lang="tr">Oggz dosya biçimi kütüphanesi</Summary>
<Description xml:lang="tr">liboggz, Oggz biçimli dosyalara erişmek için kullanılan bir kütüphanedir. Hem Oggz biçimli dosya oluşturmak için hem de Oggz dosyalarından paket ayıklamak için kullanılabilir.</Description>
<Summary xml:lang="fr">La librairie pour fichiers au format média Oggz.</Summary>
</Source>
<Package>
<Name>liboggz-devel</Name>
<Summary xml:lang="tr">liboggz için geliştirme dosyaları</Summary>
<Description xml:lang="tr">liboggz-devel, liboggz için geliştirme dosyaları içerir</Description>
</Package>
</PISI>
+28
View File
@@ -0,0 +1,28 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--enable-sse --enable-assertions \
--disable-static \
--disable-oggtest \
--disable-opustest \
--disable-opusfiletest \
--disable-libopusenctest")
# fix unused direct dependency analysis
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING")
+54
View File
@@ -0,0 +1,54 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>opus-tools</Name>
<Homepage>http://www.opus-codec.org/</Homepage>
<Packager>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Packager>
<PartOf>multimedia.sound</PartOf>
<License>BSD</License>
<IsA>app:console</IsA>
<Summary>A set of tools to encode, inspect, and decode audio in the Opus format.</Summary>
<Description>This is opus-tools, a set of tools to encode, inspect, and decode audio in the Opus format.</Description>
<Archive sha1sum="f886c87e4882a504f24ab6b0cb6994abf20994a9" type="targz">https://archive.mozilla.org/pub/opus/opus-tools-0.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>libopusenc-devel</Dependency>
<Dependency>opusfile-devel</Dependency>
<Dependency>libopus-devel</Dependency>
<Dependency>openssl-devel</Dependency>
<Dependency>libogg-devel</Dependency>
<Dependency>flac-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>opus-tools</Name>
<Summary>A set of tools to encode, inspect, and decode audio in the Opus format.</Summary>
<RuntimeDependencies>
<Dependency>libopusenc</Dependency>
<Dependency>opusfile</Dependency>
<Dependency>openssl</Dependency>
<Dependency>libopus</Dependency>
<Dependency>libogg</Dependency>
<Dependency>flac</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-06-24</Date>
<Version>0.2</Version>
<Comment>First build.</Comment>
<Email>wascheme@tuta.io</Email>
<Name>fury</Name>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>opus-tools</Name>
<Summary xml:lang="tr">Opus dosya biçemini kodlamakö dekod etmek, incelemek vb için bir araç takımı.</Summary>
<Description xml:lang="tr">opus-tools, Opus dosya biçemini kodlamak. dekod etmek, incelemek vbç için bir araç takımı sunar.</Description>
</Source>
</PISI>