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

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Baptiste Kempf <jb@videolan.org>2019-10-08 09:37:21 +0300
committerJean-Baptiste Kempf <jb@videolan.org>2019-10-08 13:54:03 +0300
commit3e0f1508ad17b181b9252423655a15602497bd49 (patch)
tree7a8e12c29809a572155336f2b74ee45d94a8bb3b /package
parent61442bee60f45b05da627ddbac10a9a63e243f47 (diff)
Move snap to package/ subfolder
Diffstat (limited to 'package')
-rw-r--r--package/snap/snapcraft.yaml24
1 files changed, 24 insertions, 0 deletions
diff --git a/package/snap/snapcraft.yaml b/package/snap/snapcraft.yaml
new file mode 100644
index 0000000..2028237
--- /dev/null
+++ b/package/snap/snapcraft.yaml
@@ -0,0 +1,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