Welcome to mirror list, hosted at ThFree Co, Russian Federation.

snapcraft.yaml « snap « package - github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2028237068cb85bc95d8a15542d81c7c700ef489 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: dav1d
base: core18
version: git
version-script: git describe HEAD --always
summary: AV1 decoder from VideoLAN
description: |
  A small and fast AV1 decoder from the people who brought you VLC.

grade: devel # must be 'stable' to release into candidate/stable channels
confinement: strict # use 'strict' once you have the right plugs and slots

apps:
  dav1d:
    command: usr/bin/dav1d
    plugs: [ 'home' ]

parts:
  dav1d:
    plugin: meson
    source: ../../
    build-packages: [ 'nasm' ]
    meson-parameters:
      - --prefix=/usr
      - --buildtype=release