diff --git a/multimedia/video/libvpx/actions.py b/multimedia/video/libvpx/actions.py new file mode 100644 index 0000000000..109f8cb1a5 --- /dev/null +++ b/multimedia/video/libvpx/actions.py @@ -0,0 +1,40 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/copyleft/gpl.txt. + +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import get + +#WorkDir = "libvpx" +# libdir = "lib64" if get.ARCH() == "x86_64" else "lib" +libdir = "lib" + +def setup(): + shelltools.export("LC_ALL", "en_US.UTF-8") + shelltools.export("CFLAGS", get.CFLAGS().replace("-ggdb3", "")) + + autotools.rawConfigure("--prefix=/usr \ + --libdir=/usr/%s \ + --enable-pic \ + --enable-vp8 \ + --enable-shared \ + --enable-runtime-cpu-detect \ + --enable-postproc \ + --enable-multithread \ + --disable-install-docs \ + --disable-debug \ + --disable-debug-libs" % libdir) + + +def build(): + autotools.make("verbose=true") + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + pisitools.remove("/usr/%s/*.a" % libdir) + + pisitools.dodoc("AUTHORS", "CHANGELOG", "LICENSE", "PATENTS") diff --git a/multimedia/video/libvpx/pspec.xml b/multimedia/video/libvpx/pspec.xml new file mode 100644 index 0000000000..72162533e8 --- /dev/null +++ b/multimedia/video/libvpx/pspec.xml @@ -0,0 +1,89 @@ + + + + + libvpx + http://www.webmproject.org + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + library + WebM VP8 Codec SDK + libvpx is the VP8 development library usually used in WebM and similiar formats. + http://storage.googleapis.com/downloads.webmproject.org/releases/webm/libvpx-1.4.0.tar.bz2 + + libgcc + + + + + + + libvpx + + /usr/bin + /usr/lib + /usr/share/doc/libvpx + + + + + libvpx-devel + libvpx header files + + libvpx + + + /usr/include + /usr/lib/pkgconfig + + + + + + 2014-07-15 + 1.4.0 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-05-22 + 1.3.0 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-29 + 1.3.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-02-09 + 1.2.0 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-06 + 1.2.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-29 + 1.0 + First release + PisiLinux Community + admins@pisilinux.org + + + \ No newline at end of file diff --git a/multimedia/video/libvpx/translations.xml b/multimedia/video/libvpx/translations.xml new file mode 100644 index 0000000000..a60c26014d --- /dev/null +++ b/multimedia/video/libvpx/translations.xml @@ -0,0 +1,13 @@ + + + + libvpx + WebM VP8 geliştirme altyapısı + libvpx WebM ve benzeri çokluortam taşıyıcılarda kullanılan VP8 kodeği geliştirme kitaplığıdır. + + + + libvpx-devel + libvpx için başlık dosyaları + + \ No newline at end of file