aom-3.5.0
This commit is contained in:
Executable → Regular
+14
-24
@@ -2,37 +2,27 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.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
|
||||
from pisi.actionsapi import cmaketools, mesontools, pisitools, get
|
||||
|
||||
WorkDir="libaom-%s" % get.srcVERSION()
|
||||
|
||||
j = ''.join([
|
||||
' -DCMAKE_BUILD_TYPE=Release',
|
||||
' -DBUILD_SHARED_LIBS=1',
|
||||
' -DENABLE_TESTS=0',
|
||||
' -S . -B build -G Ninja -L '
|
||||
])
|
||||
|
||||
def setup():
|
||||
#shelltools.cd("%s" % get.workDIR())
|
||||
#shelltools.move("libaom-*", "aom-%s" % get.srcVERSION())
|
||||
#shelltools.cd("aom-%s" % get.srcVERSION())
|
||||
cmaketools.configure("-S . -B build -G Ninja \
|
||||
-DBUILD_SHARED_LIBS=1 \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DENABLE_TESTS=0")
|
||||
cmaketools.configure(j)
|
||||
|
||||
def build():
|
||||
shelltools.cd("build")
|
||||
shelltools.system("ninja")
|
||||
mesontools.build("-C build")
|
||||
|
||||
def install():
|
||||
shelltools.cd("build")
|
||||
shelltools.system("DESTDIR=%s ninja install" % get.installDIR())
|
||||
|
||||
#pisitools.dosym("/usr/lib/libaom.so.3.4.0", "/usr/lib/libaom.so.0")
|
||||
|
||||
pisitools.insinto("/usr/share/pixmaps", "aomedia_logo_200.png", "aom.png")
|
||||
|
||||
shelltools.cd("..")
|
||||
pisitools.dodoc("AUTHORS", "CHANGELOG", "README.md")
|
||||
mesontools.install("-C build")
|
||||
|
||||
pisitools.insinto("/usr/share/pixmaps", "aomedia_logo_200.png", "aom.png")
|
||||
pisitools.dodoc("AUTHORS", "CHANGELOG", "README.md")
|
||||
|
||||
Executable → Regular
+58
-51
@@ -1,73 +1,80 @@
|
||||
<?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>aom</Name>
|
||||
<Homepage>https://aomedia.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Icon>aom</Icon>
|
||||
<Summary>Alliance for Open Media video codec</Summary>
|
||||
<Description>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.</Description>
|
||||
<Archive sha1sum="5d5995284d16aa7db043984a32ae8ed4274d022a" type="targz">https://storage.googleapis.com/aom-releases/libaom-3.4.0.tar.gz</Archive>
|
||||
<Source>
|
||||
<Name>aom</Name>
|
||||
<Homepage>https://aomedia.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Icon>aom</Icon>
|
||||
<Summary>Alliance for Open Media video codec</Summary>
|
||||
<Description>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.</Description>
|
||||
<Archive sha1sum="fba14e24a72a569c25d4e48c77742b657dfe5d4a" type="targz">https://storage.googleapis.com/aom-releases/libaom-3.5.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>ninja</Dependency>
|
||||
<Dependency>doxygen</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>yasm-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>aom</Name>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>aom</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>aom-devel</Name>
|
||||
<Name>aom-devel</Name>
|
||||
<Summary>Header files for aom.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">aom</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/include</Path>
|
||||
<Files>
|
||||
<Path fileType="headers">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2022-08-02</Date>
|
||||
<Version>3.4.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2021-11-01</Date>
|
||||
<Version>3.2.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2020-01-12</Date>
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2023-01-09</Date>
|
||||
<Version>3.5.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2022-08-02</Date>
|
||||
<Version>3.4.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2021-11-01</Date>
|
||||
<Version>3.2.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2020-01-12</Date>
|
||||
<Version>1.0.0_20200112</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
Reference in New Issue
Block a user