diff options
-rw-r--r-- | examples/yt-dlp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/yt-dlp b/examples/yt-dlp new file mode 100644 index 0000000..78175ab --- /dev/null +++ b/examples/yt-dlp | |||
@@ -0,0 +1,20 @@ | |||
1 | # yt-dlp | ||
2 | |||
3 | SOURCE=https://github.com/yt-dlp/yt-dlp | ||
4 | |||
5 | APT_DEPENDENCIES=( | ||
6 | python3 | ||
7 | zip | ||
8 | pandoc | ||
9 | python3-pytest | ||
10 | ) | ||
11 | |||
12 | export PIP_REQUIRE_VIRTUALENV=false | ||
13 | |||
14 | # Plan | ||
15 | ## Use the make-centric one, instead of PIP. Because ... I like make :) | ||
16 | |||
17 | install_deps | ||
18 | repo_pull | ||
19 | repo_ready | ||
20 | make_install | ||