Add AV1 support to snap

This commit is contained in:
Ilya Fedin 2020-03-28 07:23:19 +04:00 committed by John Preston
parent c89c98183d
commit bdde198f52
2 changed files with 32 additions and 6 deletions

View File

@ -67,7 +67,7 @@ jobs:
- name: CMake build. - name: CMake build.
if: steps.cache-cmake.outputs.cache-hit != 'true' if: steps.cache-cmake.outputs.cache-hit != 'true'
run: snapcraft build --destructive-mode cmake run: sudo snapcraft build --destructive-mode cmake
- name: FFmpeg cache. - name: FFmpeg cache.
id: cache-ffmpeg id: cache-ffmpeg
@ -78,11 +78,11 @@ jobs:
- name: FFmpeg build. - name: FFmpeg build.
if: steps.cache-ffmpeg.outputs.cache-hit != 'true' if: steps.cache-ffmpeg.outputs.cache-hit != 'true'
run: snapcraft build --destructive-mode ffmpeg run: sudo snapcraft build --destructive-mode ffmpeg
- name: Telegram Desktop snap build. - name: Telegram Desktop snap build.
if: env.ONLY_CACHE == 'false' if: env.ONLY_CACHE == 'false'
run: snapcraft --destructive-mode run: sudo snapcraft --destructive-mode
- name: Move artifact. - name: Move artifact.
if: env.UPLOAD_ARTIFACT == 'true' if: env.UPLOAD_ARTIFACT == 'true'
@ -102,5 +102,5 @@ jobs:
- name: Remove unneeded directories for cache. - name: Remove unneeded directories for cache.
run: | run: |
rm -rf parts/{cmake,ffmpeg}/{build,src,ubuntu} sudo rm -rf parts/{cmake,ffmpeg}/{build,src,ubuntu}
rm -rf parts/{cmake,ffmpeg}/state/{stage,prime} sudo rm -rf parts/{cmake,ffmpeg}/state/{stage,prime}

View File

@ -191,13 +191,35 @@ parts:
- libtinfo5 - libtinfo5
prime: [-./*] prime: [-./*]
nasm:
source: https://repo.or.cz/nasm.git
source-depth: 1
source-tag: nasm-2.14.02
plugin: autotools
override-build: |
./autogen.sh
./configure --prefix=
make
install -d "$SNAPCRAFT_PART_INSTALL/bin"
install nasm "$SNAPCRAFT_PART_INSTALL/bin/nasm"
install ndisasm "$SNAPCRAFT_PART_INSTALL/bin/ndisasm"
prime: [-./*]
dav1d:
source: https://github.com/videolan/dav1d.git
source-depth: 1
source-tag: 0.6.0
plugin: meson
meson-parameters: [--prefix=/usr]
after:
- nasm
ffmpeg: ffmpeg:
source: https://github.com/FFmpeg/FFmpeg.git source: https://github.com/FFmpeg/FFmpeg.git
source-depth: 1 source-depth: 1
source-branch: release/4.2 source-branch: release/4.2
plugin: autotools plugin: autotools
build-packages: build-packages:
- yasm
- libasound2-dev - libasound2-dev
- libopus-dev - libopus-dev
- libva-dev - libva-dev
@ -219,6 +241,7 @@ parts:
- --disable-iconv - --disable-iconv
- --enable-gpl - --enable-gpl
- --enable-version3 - --enable-version3
- --enable-libdav1d
- --enable-libopus - --enable-libopus
- --enable-vaapi - --enable-vaapi
- --enable-vdpau - --enable-vdpau
@ -228,6 +251,7 @@ parts:
- --enable-decoder=flac - --enable-decoder=flac
- --enable-decoder=gif - --enable-decoder=gif
- --enable-decoder=h264 - --enable-decoder=h264
- --enable-decoder=libdav1d
- --enable-decoder=mp1 - --enable-decoder=mp1
- --enable-decoder=mp1float - --enable-decoder=mp1float
- --enable-decoder=mp2 - --enable-decoder=mp2
@ -277,6 +301,8 @@ parts:
patch -p1 < "$SNAPCRAFT_STAGE/ffmpeg.diff" patch -p1 < "$SNAPCRAFT_STAGE/ffmpeg.diff"
after: after:
- patches - patches
- nasm
- dav1d
openal: openal:
source: https://github.com/kcat/openal-soft.git source: https://github.com/kcat/openal-soft.git