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
+14 -24
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")
shelltools.cd("..")
pisitools.dodoc("AUTHORS", "CHANGELOG", "README.md")
pisitools.insinto("/usr/share/pixmaps", "aomedia_logo_200.png", "aom.png")
pisitools.dodoc("AUTHORS", "CHANGELOG", "README.md")
Executable → Regular
+55 -48
View File
@@ -1,73 +1,80 @@
<?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>
<Homepage>https://aomedia.org/</Homepage> <Homepage>https://aomedia.org/</Homepage>
<Packager> <Packager>
<Name>Mathias Freire</Name> <Name>Mathias Freire</Name>
<Email>mathiasfreire45@gmail.com</Email> <Email>mathiasfreire45@gmail.com</Email>
</Packager> </Packager>
<License>BSD</License> <License>BSD</License>
<IsA>library</IsA> <IsA>library</IsA>
<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>
<Dependency>cmake</Dependency> <Dependency>cmake</Dependency>
<Dependency>yasm-devel</Dependency> <Dependency>yasm-devel</Dependency>
</BuildDependencies> </BuildDependencies>
</Source> </Source>
<Package> <Package>
<Name>aom</Name> <Name>aom</Name>
<RuntimeDependencies> <RuntimeDependencies>
<Dependency>libgcc</Dependency> <Dependency>libgcc</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="executable">/usr/bin</Path> <Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path> <Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path> <Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/pixmaps</Path> <Path fileType="data">/usr/share/pixmaps</Path>
</Files> </Files>
</Package> </Package>
<Package> <Package>
<Name>aom-devel</Name> <Name>aom-devel</Name>
<Summary>Header files for aom.</Summary> <Summary>Header files for aom.</Summary>
<RuntimeDependencies> <RuntimeDependencies>
<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="3"> <Update release="4">
<Date>2022-08-02</Date> <Date>2023-01-09</Date>
<Version>3.4.0</Version> <Version>3.5.0</Version>
<Comment>Version bump.</Comment> <Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name> <Name>fury</Name>
<Email>muscnsl@gmail.com</Email> <Email>uglyside@yandex.ru</Email>
</Update> </Update>
<Update release="2"> <Update release="3">
<Date>2021-11-01</Date> <Date>2022-08-02</Date>
<Version>3.2.0</Version> <Version>3.4.0</Version>
<Comment>Version bump.</Comment> <Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name> <Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email> <Email>muscnsl@gmail.com</Email>
</Update> </Update>
<Update release="1"> <Update release="2">
<Date>2020-01-12</Date> <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> <Version>1.0.0_20200112</Version>
<Comment>First release</Comment> <Comment>First release</Comment>
<Name>Idris Kalp</Name> <Name>Idris Kalp</Name>
<Email>idriskalp@gmail.com</Email> <Email>idriskalp@gmail.com</Email>
</Update> </Update>
</History> </History>
</PISI> </PISI>