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>
+42
View File
@@ -0,0 +1,42 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
WorkDir = "SDL2_mixer-%s" % get.srcVERSION()
def setup():
#pisitools.dosed("timidity/config.h", "/usr/local/lib/timidity", "/usr/share/timidity")
options = "--disable-dependency-tracking \
--disable-static \
--enable-music-midi \
--enable-music-midi-timidity \
--enable-music-mod \
--enable-music-mp3 \
--enable-music-ogg"
if get.buildTYPE() == "emul32":
options += " --includedir=/usr/include \
--libdir=/usr/lib32"
shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
shelltools.export("CFLAGS", "%s -m32" % get.CFLAGS())
shelltools.export("CXXFLAGS", "%s -m32" % get.CXXFLAGS())
shelltools.export("LDFLAGS", "%s -m32" % get.LDFLAGS())
autotools.configure(options)
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("CHANGES*", "COPYING*", "README*")
+100
View File
@@ -0,0 +1,100 @@
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>sdl2-mixer</Name>
<Homepage>http://www.libsdl.org/projects/SDL2_mixer/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<Summary>SDL2 mixer library</Summary>
<Description>SDL2_mixer is a SDL2 library for loading sound files.</Description>
<Archive sha1sum="242a63b1c7f38e358e94b1e0dc5120a6c1f3763b" type="targz">http://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-2.0.4.tar.gz</Archive>
<BuildDependencies>
<Dependency>flac-devel</Dependency>
<Dependency>mpg123-devel</Dependency>
<Dependency>libopus-devel</Dependency>
<Dependency>opusfile-devel</Dependency>
<Dependency>libsdl2-devel</Dependency>
<Dependency>libvorbis-devel</Dependency>
<Dependency>fluidsynth-devel</Dependency>
<Dependency>libmodplug-devel</Dependency>
</BuildDependencies>
<Patches>
<!--<Patch level="1">dev_snd_seq.patch</Patch>-->
<!-- <Patch level="1">ldflags.patch</Patch> -->
</Patches>
</Source>
<Package>
<Name>sdl2-mixer</Name>
<RuntimeDependencies>
<Dependency>flac</Dependency>
<Dependency>mpg123</Dependency>
<Dependency>libopus</Dependency>
<Dependency>libsdl2</Dependency>
<Dependency>opusfile</Dependency>
<Dependency>libvorbis</Dependency>
<Dependency>fluidsynth</Dependency>
<Dependency>libmodplug</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>sdl2-mixer-devel</Name>
<Summary>Development files for sdl2-mixer</Summary>
<RuntimeDependencies>
<Dependency release="current">sdl2-mixer</Dependency>
<Dependency>libsdl2-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/lib32/pkgconfig</Path>
</Files>
</Package>
<Package>
<Name>sdl2-mixer-32bit</Name>
<PartOf>emul32</PartOf>
<Summary>32-bit shared libraries for sdl2-mixer</Summary>
<BuildType>emul32</BuildType>
<BuildDependencies>
<Dependency>flac-32bit</Dependency>
<Dependency>mpg123-32bit</Dependency>
<Dependency>libopus-32bit</Dependency>
<Dependency>libsdl2-32bit</Dependency>
<Dependency>opusfile-32bit</Dependency>
<Dependency>libvorbis-32bit</Dependency>
</BuildDependencies>
<RuntimeDependencies>
<Dependency release="current">sdl2-mixer</Dependency>
<Dependency>flac-32bit</Dependency>
<Dependency>mpg123-32bit</Dependency>
<Dependency>libopus-32bit</Dependency>
<Dependency>libsdl2-32bit</Dependency>
<Dependency>opusfile-32bit</Dependency>
<Dependency>libvorbis-32bit</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib32/</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-03-07</Date>
<Version>2.0.4</Version>
<Comment>First release</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,19 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>sdl-mixer</Name>
<Summary xml:lang="tr">SDL ses yükleme kitaplığı</Summary>
<Summary xml:lang="fr">Librairie du mixer SDL.</Summary>
<Description xml:lang="tr">SDL_mixer, SDL için bir ses yükleme kitaplığıdır.</Description>
</Source>
<Package>
<Name>sdl-mixer-devel</Name>
<Summary xml:lang="tr">sdl-mixer için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>sdl-mixer-32bit</Name>
<Summary xml:lang="tr">sdl-mixer için 32-bit paylaşımlı kitaplıklar</Summary>
</Package>
</PISI>
+232692 -232414
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
15445e9b30a480cbadfc8ec9bb14f8e52539bf9e
2d5baa7f56d6cdebb6a880fde8bc14899bfc1766
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
245477bd43e19baf7c00aa7db9417f5207b94902
baf6448dabe15d8ad1889b8cd0128f9d4a77af02