From 6aa2dd69f46a78b165f4520791a8b568b508b8d4 Mon Sep 17 00:00:00 2001 From: Evan Dandrea Date: Tue, 15 Aug 2017 11:36:43 +0100 Subject: [PATCH] Add a snapcraft.yaml --- snapcraft.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 snapcraft.yaml diff --git a/snapcraft.yaml b/snapcraft.yaml new file mode 100644 index 000000000..22caa2f60 --- /dev/null +++ b/snapcraft.yaml @@ -0,0 +1,20 @@ +name: youtube-dl +version: git +summary: YouTube downloader +description: | + Command-line program to download videos from YouTube.com and other video + sites +grade: stable +confinement: strict + +parts: + youtube-dl: + source: . + plugin: python + python-version: python3 + after: [ffmpeg] + +apps: + youtube-dl: + command: bin/youtube-dl + plugs: [network, home]