library for sound and video
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
#!/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
|
||||
|
||||
def setup():
|
||||
shelltools.export("CFLAGS", "%s -fPIC" % get.CFLAGS())
|
||||
shelltools.export("CXXFLAGS", "%s -fPIC" % get.CXXFLAGS())
|
||||
autotools.configure()
|
||||
|
||||
def build():
|
||||
autotools.make("PREFIX=/usr")
|
||||
|
||||
def install():
|
||||
autotools.install("libdir=%s/usr/lib" % get.installDIR())
|
||||
|
||||
# No static libs
|
||||
pisitools.remove("/usr/lib/*.a")
|
||||
|
||||
pisitools.dodoc("LICENSE.*")
|
||||
@@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libebml</Name>
|
||||
<Homepage>http://www.matroska.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Extensible binary format library (kinda like XML)</Summary>
|
||||
<Description>Extensible Binary Meta Language access library A library for reading and writing files with the Extensible Binary Meta Language, a binary pendant to XML.</Description>
|
||||
<Archive sha1sum="3b49d15b6744ab4e53b624e3fd529e1f5717b523" type="tarbz2">http://dl.matroska.org/downloads/libebml/libebml-1.3.1.tar.bz2</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libebml</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libebml-devel</Name>
|
||||
<Summary>Development files for libebml</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libebml</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="header">/usr/lib/pkgconfig</Path>
|
||||
<!-- FIXME: Remove this if not necessary -->
|
||||
<Path fileType="man">/usr/share/man/man3</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2015-08-20</Date>
|
||||
<Version>1.3.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-05-24</Date>
|
||||
<Version>1.3.0</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-11-16</Date>
|
||||
<Version>1.3.0</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Burak Fazıl Ertürk</Name>
|
||||
<Email>burakerturk@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-11-07</Date>
|
||||
<Version>1.2.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libebml</Name>
|
||||
<Summary xml:lang="tr">Genişletilebilir ikilik biçimlendirme kütüphanesi</Summary>
|
||||
<Summary xml:lang="fr">Librairie de format binaire extensible (un peu comme XML).</Summary>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libebml-devel</Name>
|
||||
<Summary xml:lang="tr">libebml için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,26 @@
|
||||
#!/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 get
|
||||
|
||||
|
||||
def setup():
|
||||
#pisitools.dosed("libfaad/Makefile.am", "iquote ", "I")
|
||||
autotools.autoreconf("-vfi")
|
||||
|
||||
autotools.configure("--without-xmms \
|
||||
--with-drm \
|
||||
--disable-static")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README", "README.linux", "TODO")
|
||||
@@ -0,0 +1,13 @@
|
||||
Install mp4ff_int_types.h for mythmusic.
|
||||
|
||||
http://bugs.gentoo.org/275008
|
||||
|
||||
--- common/mp4ff/Makefile.am
|
||||
+++ common/mp4ff/Makefile.am
|
||||
@@ -1,5 +1,5 @@
|
||||
lib_LTLIBRARIES = libmp4ff.la
|
||||
-include_HEADERS = mp4ff.h mp4ffint.h
|
||||
+include_HEADERS = mp4ff.h mp4ffint.h mp4ff_int_types.h
|
||||
|
||||
AM_CFLAGS = -DUSE_TAGGING=1
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
Ripped from Debian
|
||||
|
||||
Patch to create a shared lib for libmp4ff.
|
||||
|
||||
--- a/common/mp4ff/Makefile.am
|
||||
+++ b/common/mp4ff/Makefile.am
|
||||
@@ -1,7 +1,8 @@
|
||||
-lib_LIBRARIES = libmp4ff.a
|
||||
+lib_LTLIBRARIES = libmp4ff.la
|
||||
include_HEADERS = mp4ff.h mp4ffint.h
|
||||
|
||||
-libmp4ff_a_CFLAGS = -DUSE_TAGGING=1
|
||||
+AM_CFLAGS = -DUSE_TAGGING=1
|
||||
|
||||
-libmp4ff_a_SOURCES = mp4ff.c mp4atom.c mp4meta.c mp4sample.c mp4util.c \
|
||||
+libmp4ff_la_LDFLAGS = -version-info 0:0:0
|
||||
+libmp4ff_la_SOURCES = mp4ff.c mp4atom.c mp4meta.c mp4sample.c mp4util.c \
|
||||
mp4tagupdate.c mp4ff.h mp4ffint.h mp4ff_int_types.h
|
||||
--- a/frontend/Makefile.am
|
||||
+++ b/frontend/Makefile.am
|
||||
@@ -5,7 +5,7 @@
|
||||
-I$(top_srcdir)/common/mp4ff
|
||||
|
||||
faad_LDADD = $(top_builddir)/libfaad/libfaad.la \
|
||||
- $(top_builddir)/common/mp4ff/libmp4ff.a
|
||||
+ $(top_builddir)/common/mp4ff/libmp4ff.la
|
||||
|
||||
faad_SOURCES = main.c \
|
||||
audio.c audio.h \
|
||||
@@ -0,0 +1,10 @@
|
||||
diff -ur faad2-2.7.orig/frontend/Makefile.am faad2-2.7/frontend/Makefile.am
|
||||
--- faad2-2.7.orig/frontend/Makefile.am 2009-02-06 18:03:37.000000000 +0200
|
||||
+++ faad2-2.7/frontend/Makefile.am 2009-07-20 20:27:29.000000000 +0300
|
||||
@@ -1,5 +1,5 @@
|
||||
bin_PROGRAMS = faad
|
||||
-man_MANS = faad.man
|
||||
+man1_MANS = faad.man
|
||||
|
||||
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/common/faad \
|
||||
-I$(top_srcdir)/common/mp4ff
|
||||
@@ -0,0 +1,74 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>faad2</Name>
|
||||
<Homepage>http://www.audiocoding.com/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<IsA>library</IsA>
|
||||
<Summary>MPEG2 and MPEG4 AAC decoder</Summary>
|
||||
<Description>FAAD2 is a HE, LC, MAIN and LTP profile, MPEG2 and MPEG-4 AAC decoder.</Description>
|
||||
<Archive sha1sum="b0e80481d27ae9faf9e46c8c8dfb617a0adb91b5" type="tarbz2">mirrors://sourceforge/faac/faad2-2.7.tar.bz2</Archive>
|
||||
<!--BuildDependencies>
|
||||
<Dependency>libmp4v2-devel</Dependency>
|
||||
</BuildDependencies-->
|
||||
<Patches>
|
||||
<Patch level="1">faad2-2.7-libmp4ff-shared-lib.patch</Patch>
|
||||
<Patch level="1">faad2-2.7-man1_MANS.patch</Patch>
|
||||
<Patch>faad2-2.7-libmp4ff-install-mp4ff_int_types_h.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>faad2</Name>
|
||||
<!--RuntimeDependencies>
|
||||
<Dependency>libmp4v2</Dependency>
|
||||
</RuntimeDependencies-->
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc/faad2</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>faad2-devel</Name>
|
||||
<Summary>Development files for faad2</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">faad2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-05-20</Date>
|
||||
<Version>2.7</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-01-23</Date>
|
||||
<Version>2.7</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2010-10-12</Date>
|
||||
<Version>2.7</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>faad2</Name>
|
||||
<Summary xml:lang="tr">AAC yorumlayıcı</Summary>
|
||||
<Description xml:lang="tr">FAAD2 bir HE, LC, MAIN ve LTP profil, MPEG2 ve MPEG4 AAC çözücüdür.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>faad2-devel</Name>
|
||||
<Summary xml:lang="tr">faad2 için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
WorkDir = "libcdaudio-%sp2" % get.srcVERSION()
|
||||
|
||||
def setup():
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "TODO")
|
||||
@@ -0,0 +1,16 @@
|
||||
--- src/cddb.c~ 2004-04-04 00:40:37.000000000 +0200
|
||||
+++ src/cddb.c 2005-06-24 15:50:55.160952588 +0200
|
||||
@@ -472,8 +472,11 @@
|
||||
|
||||
snprintf(inbuffer, 108, "%s/.cdserverrc", getenv("HOME"));
|
||||
if(stat(inbuffer, &st) < 0) {
|
||||
- free(inbuffer);
|
||||
- return 0;
|
||||
+ strcpy(inbuffer, "/etc/cdserver");
|
||||
+ if(stat(inbuffer, &st) < 0) {
|
||||
+ free(inbuffer);
|
||||
+ return 0;
|
||||
+ }
|
||||
}
|
||||
|
||||
if((cddbconf = fopen(inbuffer, "r")) == NULL) {
|
||||
@@ -0,0 +1,12 @@
|
||||
diff -Nur libcdaudio-0.99.12p2/src/cddb.c libcdaudio-0.99.12p2-new/src/cddb.c
|
||||
--- libcdaudio-0.99.12p2/src/cddb.c 2004-09-09 04:26:39.000000000 +0300
|
||||
+++ libcdaudio-0.99.12p2-new/src/cddb.c 2008-11-06 15:47:58.000000000 +0200
|
||||
@@ -1679,7 +1679,7 @@
|
||||
free(file);
|
||||
|
||||
while(!feof(cddb_data)) {
|
||||
- fgets(inbuffer, 512, cddb_data);
|
||||
+ fgets(inbuffer, 256, cddb_data);
|
||||
cddb_process_line(inbuffer, data);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libcdaudio</Name>
|
||||
<Homepage>http://libcdaudio.sourceforge.net</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>A library for controlling CD-ROM devices</Summary>
|
||||
<Description>libcdaudio is a portable library for controlling audio CDs. It is also able to manage transfers of information with the CDDB (http://www.freedb.org/) and CDIndex systems.</Description>
|
||||
<Archive sha1sum="1ae52f858c1a5ac9ced8eb7165620372b2a17035" type="targz">mirrors://sourceforge/libcdaudio/libcdaudio-0.99.12p2.tar.gz</Archive>
|
||||
<Patches>
|
||||
<Patch>libcdaudio-0.99.10.config.patch</Patch>
|
||||
<Patch level="1">security-bug-8587.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libcdaudio</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libcdaudio-devel</Name>
|
||||
<Summary>Development files for libcdaudio</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libcdaudio</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/share/aclocal</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-05-26</Date>
|
||||
<Version>0.99.12</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-03-08</Date>
|
||||
<Version>0.99.12</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2010-10-12</Date>
|
||||
<Version>0.99.12</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libcdaudio</Name>
|
||||
<Summary xml:lang="tr">CD-ROM aygıtlarını kontrol etmeye yarayan bir kitaplık</Summary>
|
||||
<Description xml:lang="tr">libcdaudio ses CDlerini kontrol etmekte kullanılan taşınabilir bir kitaplıktır.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libcdaudio-devel</Name>
|
||||
<Summary xml:lang="tr">libcdaudio için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,23 @@
|
||||
#!/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 libtools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
#pisitools.dosed("configure", "-O3")
|
||||
# libtools.libtoolize()
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("README", "TODO", "ChangeLog", "AUTHORS")
|
||||
@@ -0,0 +1,77 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>twolame</Name>
|
||||
<Homepage>http://www.twolame.org</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>app:console</IsA>
|
||||
<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>
|
||||
<BuildDependencies>
|
||||
<Dependency>libsndfile-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>twolame</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libsndfile</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc/twolame</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>twolame-devel</Name>
|
||||
<Summary>Development files for twolame</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">twolame</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="doc">/usr/share/doc/twolame/html</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2014-05-25</Date>
|
||||
<Version>0.3.13</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-02-17</Date>
|
||||
<Version>0.3.13</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-07-26</Date>
|
||||
<Version>0.3.13</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-08-28</Date>
|
||||
<Version>0.3.13</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Fatih Turgel</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>twolame</Name>
|
||||
<Summary xml:lang="tr">Optimize edilmiş bir MPEG Ses katman 2 çözücüsü</Summary>
|
||||
<Description xml:lang="tr">TwoLame Mike Cheng'in tooLAME'ni taban olarak alan LAME'in ISO dist10 kodları ve parçaları üzerinde optimize edilmiş bir MPEG Ses Katman 2 çözücüsüdür.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>twolame-devel</Name>
|
||||
<Summary xml:lang="tr">twolame için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,23 @@
|
||||
#!/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 get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--prefix=/usr \
|
||||
--libdir=/usr/lib \
|
||||
--disable-static \
|
||||
--enable-mmx")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README")
|
||||
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>wavpack</Name>
|
||||
<Homepage>http://www.wavpack.com</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<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="ef99ec8d2e91bcb486ad640cfec0d970f43eb750" type="tarbz2">http://www.wavpack.com/wavpack-4.75.0.tar.bz2</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>wavpack</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>wavpack-devel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">wavpack</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2015-08-20</Date>
|
||||
<Version>4.75.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-05-20</Date>
|
||||
<Version>4.70.0</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-01-20</Date>
|
||||
<Version>4.70.0</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2010-10-12</Date>
|
||||
<Version>4.60.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>wavpack</Name>
|
||||
<Summary xml:lang="tr">WavPack ses sıkıştırma araçları.</Summary>
|
||||
<Description xml:lang="tr">WavPack, kayıpsız veya yüksek kaliteli kayıplı ve eşşsiz karışık sıkıştırma kipi sunan açık ses sıkıştırma biçimidir.</Description>
|
||||
<Description xml:lang="es">WavPack es un formato de compresión open audio con modos de compresión sin pérdida, de alta calidad con pérdida, y un modo híbrido.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,29 @@
|
||||
#!/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
|
||||
|
||||
def setup():
|
||||
#pisitools.dosed("make/linux/Makefile", "CXXFLAGS=", "CXXFLAGS+=")
|
||||
autotools.configure()
|
||||
|
||||
def build():
|
||||
#shelltools.cd("make/linux")
|
||||
autotools.make("PREFIX=/usr \
|
||||
LIBEBML_INCLUDE_DIR=/usr/include/ebml \
|
||||
LIBEBML_LIB_DIR=/usr/lib")
|
||||
|
||||
def install():
|
||||
#shelltools.cd("make/linux")
|
||||
autotools.install("libdir=%s/usr/lib" % get.installDIR())
|
||||
|
||||
# No static libs
|
||||
pisitools.remove("/usr/lib/*.a")
|
||||
|
||||
pisitools.dodoc("ChangeLog")
|
||||
@@ -0,0 +1,77 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libmatroska</Name>
|
||||
<Homepage>http://www.matroska.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Extensible multimedia container format based on EBML</Summary>
|
||||
<Description>Matroska is an extensible open standard Audio/Video container. It aims to become THE standard of multimedia container formats. Matroska is usually found as .mkv files (matroska video) and .mka files (matroska audio).</Description>
|
||||
<Archive sha1sum="546a761a763b2d1d15dbbccaa5495eb63dd87223" type="tarbz2">http://dl.matroska.org/downloads/libmatroska/libmatroska-1.4.2.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libebml-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libmatroska</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libebml</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libmatroska-devel</Name>
|
||||
<Summary>Development files for libmatroska</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libmatroska</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="header">/usr/lib/pkgconfig</Path>
|
||||
<!-- FIXME: Remove this if not necessary -->
|
||||
<Path fileType="man">/usr/share/man/man3</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2015-08-20</Date>
|
||||
<Version>1.4.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-05-25</Date>
|
||||
<Version>1.4.1</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-11-16</Date>
|
||||
<Version>1.4.1</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Burak Fazıl Ertürk</Name>
|
||||
<Email>burakerturk@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-08-29</Date>
|
||||
<Version>1.3.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libmatroska</Name>
|
||||
<Summary xml:lang="tr">EBML üzerine konumlandırılmış genişletilebilir çokluortam taşıyıcısı</Summary>
|
||||
<Summary xml:lang="fr">Format de conteneur multimédia extensible basé sur EBML.</Summary>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libmatroska-devel</Name>
|
||||
<Summary xml:lang="tr">libmatroska için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user