-
Notifications
You must be signed in to change notification settings - Fork 31
/
snapcraft.yaml
85 lines (76 loc) · 1.98 KB
/
snapcraft.yaml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: robogif
version: 1.3.0
summary: RoboGif - Simple Android screen recorder
description: RoboGif allows you to simply record the screen of your 4.4+ Android device and then convert the recording to high-quality GIF or video.\n Requires adb and ffmpeg to be installed on the system.
type: app
grade: stable
confinement: classic
apps:
robogif:
command: bin/robogif
parts:
robogif:
plugin: python
python-version: python2
stage-packages:
- android-tools-adb
source: .
ffmpeg:
source: git://source.ffmpeg.org/ffmpeg.git
source-type: git
source-branch: release/3.4
install-via: prefix
plugin: autotools
after: [x264]
build-packages:
- yasm
- pkg-config
configflags:
- --disable-everything
- --disable-programs
- --disable-hwaccels
- --disable-shared
- --enable-ffmpeg
- --enable-static
- --enable-gpl
- --enable-libx264
- --enable-muxer=mp4
- --enable-muxer=gif
- --enable-demuxer=mov
- --enable-decoder=h264
- --enable-filter=scale
- --enable-filter=palettegen
- --enable-filter=paletteuse
- --enable-filter=format
- --enable-filter=fps
- --enable-encoder=gif
- --enable-encoder=libx264
- --pkg-config-flags="--static"
- --extra-ldexeflags="-static"
prime:
- bin/ffmpeg
gifsicle:
source: https://github.com/kohler/gifsicle.git
source-type: git
source-branch: v1.91
plugin: autotools
prime:
- bin/gifsicle
x264:
source: git://git.videolan.org/x264.git
source-type: git
source-branch: stable
plugin: autotools
build-packages:
- pkg-config
after: [nasm]
configflags: [--disable-cli,--disable-shared,--enable-static,--enable-strip]
prime:
- -*
nasm:
source: https://www.nasm.us/pub/nasm/releasebuilds/2.13.03/nasm-2.13.03.tar.bz2
source-type: tar
install-via: prefix
plugin: autotools
prime:
- -*