This commit is contained in:
Rmys
2020-03-07 18:15:20 +03:00
parent 9288a2278a
commit 0f1f2fabec
10 changed files with 232977 additions and 232416 deletions
+28
View File
@@ -0,0 +1,28 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
options = "--disable-static"
if get.buildTYPE() == "emul32":
shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
options += " --libdir=/usr/lib32 \
"
autotools.configure(options)
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING", "README*")
+86
View File
@@ -0,0 +1,86 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>opusfile</Name>
<Homepage>https://opus-codec.org/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>BSD</License>
<IsA>library</IsA>
<Summary>Library for opening, seeking, and decoding .opus files</Summary>
<Description>Library for opening, seeking, and decoding .opus files</Description>
<Archive sha1sum="fc3bf2a73be16836a16d9e55ff1097de3835dce3" type="targz">https://ftp.osuosl.org/pub/xiph/releases/opus/opusfile-0.11.tar.gz</Archive>
<BuildDependencies>
<Dependency>libogg-devel</Dependency>
<Dependency>libopus-devel</Dependency>
<Dependency>openssl-devel</Dependency>
</BuildDependencies>
-->
<!--
<Patches>
<Patch>opusfile.patch</Patch>
<Patch level="1">opusfile.patch</Patch>
</Patches>
-->
</Source>
<Package>
<Name>opusfile</Name>
<RuntimeDependencies>
<Dependency>libogg</Dependency>
<Dependency>libopus</Dependency>
<Dependency>openssl</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>opusfile-32bit</Name>
<PartOf>emul32</PartOf>
<Summary>32-bit shared libraries for opusfile</Summary>
<BuildType>emul32</BuildType>
<BuildDependencies>
<Dependency>libogg-32bit</Dependency>
<Dependency>libopus-32bit</Dependency>
<Dependency>openssl-32bit</Dependency>
</BuildDependencies>
<RuntimeDependencies>
<Dependency>libogg-32bit</Dependency>
<Dependency>libopus-32bit</Dependency>
<Dependency>openssl-32bit</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib32</Path>
</Files>
</Package>
<Package>
<Name>opusfile-devel</Name>
<Summary>Development files for opusfile</Summary>
<RuntimeDependencies>
<Dependency release="current">opusfile</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="library">/usr/lib32/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-03-07</Date>
<Version>0.11</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>opusfile</Name>
<Summary xml:lang="tr">Library for opening, seeking, and decoding .opus files</Summary>
<Description xml:lang="tr">Library for opening, seeking, and decoding .opus files</Description>
</Source>
</PISI>