forked from Unrud/video-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcom.github.unrud.VideoDownloader.json
115 lines (115 loc) · 3.53 KB
/
com.github.unrud.VideoDownloader.json
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"app-id" : "com.github.unrud.VideoDownloader",
"runtime" : "org.gnome.Platform",
"runtime-version" : "3.38",
"sdk" : "org.gnome.Sdk",
"command" : "video-downloader",
"finish-args" : [
"--share=network",
"--share=ipc",
"--socket=fallback-x11",
"--socket=wayland",
"--talk-name=org.freedesktop.FileManager1",
"--filesystem=xdg-download/VideoDownloader:create",
"--metadata=X-DConf=migrate-path=/com/github/unrud/VideoDownloader/"
],
"cleanup" : [
"/include",
"/lib/pkgconfig",
"/man",
"/share/doc",
"/share/gtk-doc",
"/share/man",
"/share/pkgconfig",
"*.la",
"*.a"
],
"modules" : [
{
"name": "libhandy",
"buildsystem": "meson",
"builddir": true,
"config-opts": [
"-Dexamples=false",
"-Dglade_catalog=disabled",
"-Dtests=false",
"-Dvapi=false"
],
"sources": [
{
"type": "archive",
"url": "https://gitlab.gnome.org/GNOME/libhandy/-/archive/1.0.3/libhandy-1.0.3.tar.bz2",
"sha256": "8cdeb88deaf13efbc0da73306bf8f8d14b6e5b108807a4f7b43d6a7c6e3a158d"
}
]
},
{
"name" : "ffmpeg",
"config-opts" : [
"--disable-debug",
"--disable-doc",
"--disable-static",
"--enable-gpl",
"--enable-shared",
"--disable-ffplay",
"--disable-devices",
"--enable-gnutls",
"--enable-libmp3lame",
"--enable-libvorbis"
],
"cleanup" : [
"/share/ffmpeg"
],
"sources" : [
{
"type" : "archive",
"url" : "https://ffmpeg.org/releases/ffmpeg-4.3.1.tar.xz",
"sha256" : "ad009240d46e307b4e03a213a0f49c11b650e445b1f8be0dda2a9212b34d2ffb"
}
]
},
{
"name" : "pyxattr",
"buildsystem" : "simple",
"build-commands" : [
"pip3 install --prefix=/app ."
],
"sources" : [
{
"type" : "archive",
"url" : "https://github.com/iustin/pyxattr/archive/v0.7.2.tar.gz",
"sha256" : "a1f4b92ffb2193fd381ea352a2a5b60683a4c58c2e7d9468ba7fb71653a3d160"
}
]
},
{
"name" : "youtube-dl",
/* Missing optional dependencies atomicparsley, mpv, phantomjs and rtmpdump */
"buildsystem" : "simple",
"build-commands" : [
"pip3 install --prefix=/app ."
],
"cleanup" : [
"/etc"
],
"sources" : [
{
"type" : "archive",
"url" : "https://github.com/ytdl-org/youtube-dl/archive/2021.01.03.tar.gz",
"sha256" : "860b9063c487356a11fbdbed59e745f00f14cd3a4bfd75c9ea849ccee8d2361e"
}
]
},
{
"name" : "video-downloader",
"builddir" : true,
"buildsystem" : "meson",
"sources" : [
{
"type" : "git",
"path" : "."
}
]
}
]
}