@@ -0,0 +1,24 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
cmaketools.configure("-DAVIF_BUILD_APPS=ON \
|
||||
-DAVIF_CODEC_AOM=ON \
|
||||
-DAVIF_CODEC_DAV1D=ON \
|
||||
-DAVIF_CODEC_SVT=ON \
|
||||
-DAVIF_BUILD_GDK_PIXBUF=ON")
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("LICENSE", "README*")
|
||||
@@ -0,0 +1,76 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libavif</Name>
|
||||
<Homepage>https://github.com/AOMediaCodec/libavif</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Library for encoding and decoding avif files</Summary>
|
||||
<Description>Library for encoding and decoding avif files</Description>
|
||||
<Archive sha1sum="ccc0dee57a75049bf5d4e29ad1c44146363a21b9" type="targz">https://github.com/AOMediaCodec/libavif/archive/refs/tags/v0.9.3.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>nasm</Dependency>
|
||||
<Dependency>aom-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>dav1d-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
<Dependency>svt-av1-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<!--
|
||||
<Patches>
|
||||
<Patch>libavif.patch</Patch>
|
||||
<Patch level="1">libavif.patch</Patch>
|
||||
</Patches>
|
||||
-->
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libavif</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>aom</Dependency>
|
||||
<Dependency>dav1d</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>svt-av1</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libavif-devel</Name>
|
||||
<Summary>Development files for libavif</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libavif</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/cmake</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-11-01</Date>
|
||||
<Version>0.9.3</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libavif</Name>
|
||||
<Summary xml:lang="tr">Library for encoding and decoding avif files</Summary>
|
||||
<Description xml:lang="tr">Library for encoding and decoding avif files</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
pisitools.ldflags.add("-Wl,-z,noexecstack")
|
||||
cmaketools.configure("-DBUILD_TESTING=OFF")
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("CHANGELOG*", "LICENSE*", "README*")
|
||||
@@ -0,0 +1,58 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>svt-av1</Name>
|
||||
<Homepage>https://gitlab.com/AOMediaCodec/SVT-AV1</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>custom</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Scalable Video Technology AV1 encoder and decoder</Summary>
|
||||
<Description>Ölçeklenebilir Video Teknolojisi AV1 kodlayıcı ve kod çözücü</Description>
|
||||
<Archive sha1sum="4b6be282036ba27bd88ea81d60f9bfb5e261dbb7" type="tarbz2">https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v0.8.7/SVT-AV1-v0.8.7.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>nasm</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
</BuildDependencies>
|
||||
<!--
|
||||
<Patches>
|
||||
<Patch>svt-av1.patch</Patch>
|
||||
<Patch level="1">svt-av1.patch</Patch>
|
||||
</Patches>
|
||||
-->
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>svt-av1</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>svt-av1-devel</Name>
|
||||
<Summary>Development files for svt-av1</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">svt-av1</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-11-02</Date>
|
||||
<Version>0.8.7</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>svt-av1</Name>
|
||||
<Summary xml:lang="tr">Scalable Video Technology AV1 encoder and decoder</Summary>
|
||||
<Description xml:lang="tr">Ölçeklenebilir Video Teknolojisi AV1 kodlayıcı ve kod çözücü</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
+669
-79
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
68f4563e78761c87de52e5b2ccd577bd7b00596b
|
||||
f9e3dd8bf7c6c8cfaec7ebd71285890c40ce023e
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
6acd4c754a57bdb1630a17476806e3798d9c37a0
|
||||
3af8ae93273c4240ddb366cf8783dc41c45e4112
|
||||
Reference in New Issue
Block a user