@@ -2,13 +2,12 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
|
||||
def setup():
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
@@ -18,4 +17,4 @@ def build():
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("COPYING", "README*")
|
||||
pisitools.dodoc("COPYING", "README*")
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libogg</Name>
|
||||
@@ -10,9 +10,10 @@
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>multimedia.sound</PartOf>
|
||||
<Summary>The Ogg media file format library</Summary>
|
||||
<Description>libogg is a library for manipulating Ogg bitstream file formats. libogg supports both making Ogg bitstreams and getting packets from Ogg bitstreams.</Description>
|
||||
<Archive sha1sum="f07499a35566aa62affb5ca989f62eed5b8092c3" type="tarxz">https://ftp.osuosl.org/pub/xiph/releases/ogg/libogg-1.3.4.tar.xz</Archive>
|
||||
<Archive sha1sum="5a368421a636f7faa4c2f662857cb507dffd7c99" type="tarxz">https://ftp.osuosl.org/pub/xiph/releases/ogg/libogg-1.3.5.tar.xz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
@@ -47,7 +48,7 @@
|
||||
<Summary>32-bit shared libraries for libogg</Summary>
|
||||
<BuildType>emul32</BuildType>
|
||||
<BuildDependencies>
|
||||
|
||||
<!-- <Dependency></Dependency> -->
|
||||
</BuildDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libogg</Dependency>
|
||||
@@ -58,6 +59,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2021-12-04</Date>
|
||||
<Version>1.3.5</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Blue DeviL</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2020-01-06</Date>
|
||||
<Version>1.3.4</Version>
|
||||
|
||||
@@ -2,38 +2,17 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import libtools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
options = "--disable-static \
|
||||
--disable-sqlite \
|
||||
--enable-flac \
|
||||
--enable-alsa \
|
||||
--enable-largefile \
|
||||
--disable-gcc-pipe \
|
||||
--disable-jack \
|
||||
--disable-octave \
|
||||
--disable-gcc-werror \
|
||||
--disable-dependency-tracking"
|
||||
shelltools.export("PYTHON", "/usr/bin/env python3")
|
||||
|
||||
pisitools.dosed("examples/Makefile.am", "noinst_PROGRAMS", "check_PROGRAMS")
|
||||
pisitools.dosed("tests/Makefile.am", "noinst_PROGRAMS", "check_PROGRAMS")
|
||||
|
||||
shelltools.unlink("M4/libtool.m4")
|
||||
|
||||
for i in shelltools.ls("M4/lt*.m4"):
|
||||
shelltools.unlink(i)
|
||||
|
||||
autotools.autoreconf("-fi -I M4")
|
||||
autotools.configure(options)
|
||||
|
||||
pisitools.dosed("doc/Makefile", "^htmldocdir.*", "htmldocdir = /usr/share/doc/%s/html" % get.srcNAME())
|
||||
autotools.configure("--enable-alsa --disable-static")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
@@ -41,4 +20,4 @@ def build():
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README")
|
||||
pisitools.dodoc("AUTHORS", "NEWS")
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libsndfile</Name>
|
||||
<Homepage>http://www.mega-nerd.com/libsndfile/</Homepage>
|
||||
<Homepage>https://libsndfile.github.io/libsndfile/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
@@ -11,19 +11,20 @@
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<PartOf>multimedia.sound</PartOf>
|
||||
<Summary>A C library for reading and writing files containing sampled sound</Summary>
|
||||
<Description>Libsndfile is a C library for reading and writing files containing sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format) through one standard library interface.</Description>
|
||||
<Archive sha1sum="85aa967e19f6b9bf975601d79669025e5f8bc77d" type="targz">http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.28.tar.gz</Archive>
|
||||
<Archive sha1sum="f16a88e7223baef7c4497536dc1b55b56811debc" type="tarbz2">https://github.com/libsndfile/libsndfile/releases/download/1.0.31/libsndfile-1.0.31.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>flac-devel</Dependency>
|
||||
<Dependency>libogg-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>libopus-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>libvorbis-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">libsndfile-1.0.18-less_strict_tests.patch</Patch>
|
||||
<!-- <Patch level="1">libsndfile-1.0.17-regtests-need-sqlite.patch</Patch> -->
|
||||
<!-- <Patch level="1">m4dir.patch</Patch> -->
|
||||
<!-- <Patch level="1">missing.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
@@ -32,6 +33,7 @@
|
||||
<RuntimeDependencies>
|
||||
<Dependency>flac</Dependency>
|
||||
<Dependency>libogg</Dependency>
|
||||
<Dependency>libopus</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>libvorbis</Dependency>
|
||||
</RuntimeDependencies>
|
||||
@@ -66,12 +68,14 @@
|
||||
<Dependency>flac-32bit</Dependency>
|
||||
<Dependency>alsa-lib-32bit</Dependency>
|
||||
<Dependency>libogg-32bit</Dependency>
|
||||
<Dependency>libopus-32bit</Dependency>
|
||||
<Dependency>libvorbis-32bit</Dependency>
|
||||
</BuildDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>flac-32bit</Dependency>
|
||||
<Dependency>alsa-lib-32bit</Dependency>
|
||||
<Dependency>libogg-32bit</Dependency>
|
||||
<Dependency>libopus-32bit</Dependency>
|
||||
<Dependency>libvorbis-32bit</Dependency>
|
||||
<Dependency release="current">libsndfile</Dependency>
|
||||
</RuntimeDependencies>
|
||||
@@ -81,6 +85,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2021-12-04</Date>
|
||||
<Version>1.0.31</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2020-01-12</Date>
|
||||
<Version>1.0.28</Version>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
@@ -18,4 +18,5 @@ def build():
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
pisitools.dodoc("COPYING")
|
||||
|
||||
pisitools.dodoc("COPYING")
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libvorbis</Name>
|
||||
@@ -10,9 +10,10 @@
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>multimedia.sound</PartOf>
|
||||
<Summary>The Vorbis general audio compression codec</Summary>
|
||||
<Description>libvorbis is a fully open, non-proprietary, patent- and royalty-free, general-purpose compressed audio format for audio and music at fixed variable bitrates from 16 to 128 kbps/channel.</Description>
|
||||
<Archive sha1sum="237e3d1c66452734fd9b32f494f44238b4f0185e" type="tarxz">http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.6.tar.xz</Archive>
|
||||
<Archive sha1sum="0a2dd71a999656b8091506839e8007a61a8fda1f" type="tarxz">https://ftp.osuosl.org/pub/xiph/releases/vorbis/libvorbis-1.3.7.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libogg-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
@@ -73,6 +74,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2021-12-04</Date>
|
||||
<Version>1.3.7</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Blue DeviL</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2020-01-06</Date>
|
||||
<Version>1.3.6</Version>
|
||||
|
||||
@@ -2,16 +2,13 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import libtools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
#pisitools.dosed("configure", "-O3")
|
||||
# libtools.libtoolize()
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
def build():
|
||||
@@ -20,4 +17,4 @@ def build():
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("README", "TODO", "ChangeLog", "AUTHORS")
|
||||
pisitools.dodoc("AUTHORS", "NEWS")
|
||||
|
||||
@@ -1,18 +1,19 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>twolame</Name>
|
||||
<Homepage>http://www.twolame.org</Homepage>
|
||||
<Homepage>https://www.twolame.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>app:console</IsA>
|
||||
<PartOf>multimedia.sound</PartOf>
|
||||
<Summary>An optimised MPEG Audio Layer 2</Summary>
|
||||
<Description>TwoLAME is an optimised MPEG Audio Layer 2 encoder based on tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and portions of LAME.</Description>
|
||||
<Archive sha1sum="3ca460472c2f6eeedad70291d8e37da88b64eb8b" type="targz">mirrors://sourceforge/twolame/twolame-0.3.13.tar.gz</Archive>
|
||||
<Archive sha1sum="6ec05fdaf555ef4157746ac3c91e8cdd20d4a3bc" type="targz">mirrors://sourceforge/twolame/twolame-0.4.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libsndfile-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
@@ -45,7 +46,14 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Update release="6">
|
||||
<Date>2021-12-04</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2020-01-18</Date>
|
||||
<Version>0.3.13</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
|
||||
@@ -2,25 +2,24 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.export("AT_M4DIR", "m4")
|
||||
autotools.autoreconf("-vfi")
|
||||
j = ''.join([
|
||||
' --enable-nls',
|
||||
' --enable-vcut',
|
||||
' --enable-ogg123',
|
||||
' --with-flac',
|
||||
' --with-kate',
|
||||
' --with-speex',
|
||||
' --docdir=/%s/%s' % (get.docDIR(), get.srcNAME())
|
||||
])
|
||||
|
||||
autotools.configure('--disable-dependency-tracking \
|
||||
--enable-nls \
|
||||
--enable-vcut \
|
||||
--enable-ogg123 \
|
||||
--with-flac \
|
||||
--with-speex \
|
||||
--with-kate \
|
||||
--docdir="/%s/%s"' % (get.docDIR(), get.srcNAME()))
|
||||
def setup():
|
||||
autotools.configure(j)
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
@@ -29,4 +28,5 @@ def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.removeDir("/usr/share/doc")
|
||||
|
||||
pisitools.dodoc("CHANGES", "COPYING", "AUTHORS", "README", "ogg123/ogg123rc-example")
|
||||
|
||||
@@ -1,26 +1,28 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>vorbis-tools</Name>
|
||||
<Homepage>http://www.vorbis.com/</Homepage>
|
||||
<Homepage>https://xiph.org/vorbis/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>as-is</License>
|
||||
<IsA>app:console</IsA>
|
||||
<PartOf>multimedia.sound</PartOf>
|
||||
<Summary>Tools for using the Ogg Vorbis sound file format</Summary>
|
||||
<Description>This set of tools allow you to play and encode Ogg Vorbis files.</Description>
|
||||
<Archive sha1sum="fc6a820bdb5ad6fcac074721fab5c3f96eaf6562" type="targz">http://downloads.xiph.org/releases/vorbis/vorbis-tools-1.4.0.tar.gz</Archive>
|
||||
<Archive sha1sum="c7012dc104da4f35a5d5d46e902cd49214377f5b" type="targz">https://ftp.osuosl.org/pub/xiph/releases/vorbis/vorbis-tools-1.4.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libvorbis-devel</Dependency>
|
||||
<Dependency>libao-devel</Dependency>
|
||||
<Dependency>curl-devel</Dependency>
|
||||
<Dependency>flac-devel</Dependency>
|
||||
<Dependency>libao-devel</Dependency>
|
||||
<Dependency>speex-devel</Dependency>
|
||||
<Dependency>libogg-devel</Dependency>
|
||||
<Dependency>libkate-devel</Dependency>
|
||||
<Dependency>curl-devel</Dependency>
|
||||
<Dependency>opusfile-devel</Dependency>
|
||||
<Dependency>libvorbis-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
@@ -43,6 +45,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2021-12-04</Date>
|
||||
<Version>1.4.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2020-03-08</Date>
|
||||
<Version>1.4.0</Version>
|
||||
|
||||
@@ -2,19 +2,14 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.system("./autogen.sh")
|
||||
autotools.configure("--prefix=/usr \
|
||||
--libdir=/usr/lib \
|
||||
--disable-static \
|
||||
--enable-mmx")
|
||||
autotools.configure("--disable-static --enable-asm")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
@@ -22,4 +17,4 @@ def build():
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README")
|
||||
pisitools.dodoc("AUTHORS", "NEWS")
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>wavpack</Name>
|
||||
<Homepage>http://www.wavpack.com</Homepage>
|
||||
<Homepage>https://www.wavpack.com/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<PartOf>multimedia.sound</PartOf>
|
||||
<Summary>WavPack audio compression tools</Summary>
|
||||
<Description>WavPack is a completely open audio compression format providing lossless, high-quality lossy, and a unique hybrid compression mode.</Description>
|
||||
<Archive sha1sum="7a8c9228d8e0f48828cf0a8f31aabcc8ae1f1c3b" type="targz">https://github.com/dbry/WavPack/archive/5.1.0.tar.gz</Archive>
|
||||
<Archive sha1sum="2cee45389af573aaac0bc79b02e974cb6c411f90" type="tarxz">https://www.wavpack.com/wavpack-5.4.0.tar.xz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
@@ -37,7 +39,14 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Update release="6">
|
||||
<Date>2021-12-04</Date>
|
||||
<Version>5.4.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2020-01-18</Date>
|
||||
<Version>5.1.0</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
|
||||
Reference in New Issue
Block a user