aom-3.5.0

This commit is contained in:
4fury-c3440d8
2023-01-09 23:40:16 +03:00
parent cc6c697a7b
commit 5be6f0d83f
2 changed files with 72 additions and 75 deletions
Executable → Regular
+12 -22
View File
@@ -2,37 +2,27 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Licensed under the GNU General Public License, version 3. # 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, mesontools, pisitools, get
from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
WorkDir="libaom-%s" % get.srcVERSION() 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(): def setup():
#shelltools.cd("%s" % get.workDIR()) cmaketools.configure(j)
#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")
def build(): def build():
shelltools.cd("build") mesontools.build("-C build")
shelltools.system("ninja")
def install(): def install():
shelltools.cd("build") mesontools.install("-C 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") pisitools.insinto("/usr/share/pixmaps", "aomedia_logo_200.png", "aom.png")
shelltools.cd("..")
pisitools.dodoc("AUTHORS", "CHANGELOG", "README.md") pisitools.dodoc("AUTHORS", "CHANGELOG", "README.md")
Executable → Regular
+10 -3
View File
@@ -1,5 +1,5 @@
<?xml version="1.0" ?> <?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> <PISI>
<Source> <Source>
<Name>aom</Name> <Name>aom</Name>
@@ -13,7 +13,7 @@
<Icon>aom</Icon> <Icon>aom</Icon>
<Summary>Alliance for Open Media video codec</Summary> <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> <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> <Archive sha1sum="fba14e24a72a569c25d4e48c77742b657dfe5d4a" type="targz">https://storage.googleapis.com/aom-releases/libaom-3.5.0.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>ninja</Dependency> <Dependency>ninja</Dependency>
<Dependency>doxygen</Dependency> <Dependency>doxygen</Dependency>
@@ -42,12 +42,19 @@
<Dependency release="current">aom</Dependency> <Dependency release="current">aom</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="library">/usr/include</Path> <Path fileType="headers">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path> <Path fileType="data">/usr/lib/pkgconfig</Path>
</Files> </Files>
</Package> </Package>
<History> <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"> <Update release="3">
<Date>2022-08-02</Date> <Date>2022-08-02</Date>
<Version>3.4.0</Version> <Version>3.4.0</Version>