Ubuntu Pastebin

Paste from arm1e at Fri, 11 Aug 2017 19:16:20 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: get-iplayer # you probably want to 'snapcraft register <name>'
version: '1'
summary: CLI for downloading content from BBC iplayer
description: |
    Command Line tool for downloading tv and radio programmes from the last 30 days from the BBC iPlayer.

grade: devel 
confinement: devmode

parts:
    get-iplayer:
        source: https://github.com/get-iplayer/get_iplayer.git
        plugin: dump
        install: |
            cp ./get_iplayer $SNAPCRAFT_PART_INSTALL/
            
        stage-packages:
        - libwww-perl
        - liblwp-protocol-https-perl
        - libmojolicious-perl
        - libxml-simple-perl
        - libxml-libxml-perl
        - libcgi-pm-perl
        - atomicparsley
        - ffmpeg
        
Download as text