opus-tools:moved from contrib

This commit is contained in:
blue-devil
2020-04-08 23:25:05 +03:00
parent 30181e66ad
commit 1636b47d0e
3 changed files with 90 additions and 0 deletions
+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>