From 21ea6ceeea9531c2fbf938e35f63893eff0cb56a Mon Sep 17 00:00:00 2001 From: idriskalp Date: Sun, 12 Jan 2020 01:41:35 +0300 Subject: [PATCH] aom add to repo --- multimedia/video/aom/actions.py | 29 +++++++++++++++++ multimedia/video/aom/pspec.xml | 57 +++++++++++++++++++++++++++++++++ 2 files changed, 86 insertions(+) create mode 100755 multimedia/video/aom/actions.py create mode 100755 multimedia/video/aom/pspec.xml diff --git a/multimedia/video/aom/actions.py b/multimedia/video/aom/actions.py new file mode 100755 index 0000000000..82f71565db --- /dev/null +++ b/multimedia/video/aom/actions.py @@ -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/copyleft/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import cmaketools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import get + +def setup(): + shelltools.system("mkdir build_") + shelltools.cd("build_") + + shelltools.system("cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_LIBDIR=lib -DBUILD_SHARED_LIBS=1 -DENABLE_TESTS=0") + +def build(): + shelltools.cd("build_") + cmaketools.make() + +def install(): + shelltools.cd("build_") + autotools.rawInstall("DESTDIR=%s" %get.installDIR()) + + shelltools.cd("..") + pisitools.dodoc("AUTHORS", "CHANGELOG", "README.md") + diff --git a/multimedia/video/aom/pspec.xml b/multimedia/video/aom/pspec.xml new file mode 100755 index 0000000000..12e4350efb --- /dev/null +++ b/multimedia/video/aom/pspec.xml @@ -0,0 +1,57 @@ + + + + + aom + https://aomedia.org/ + + Mathias Freire + mathiasfreire45@gmail.com + + BSD + library + Alliance for Open Media video codec + aom is the AOMedia video encoder for ​AV1, an open source and royalty-free video codec. aom can save about 30% bitrate compared to VP9 and H.265 / HEVC, and about 50% over H.264, while retaining the same visual quality. + https://sourceforge.net/projects/pisilinux/files/source/aom-20200112.tar.xz + + ninja + + + + + aom + + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + aom-devel + Header files for aom. + + aom + + + /usr/include + /usr/lib/pkgconfig + + + + + + 2020-01-12 + 1.0.0_20200112 + First release. + Idris Kalp + idriskalp@gmail.com + + + + + +