diff options
author | Case Duckworth | 2023-02-10 22:55:17 -0600 |
---|---|---|
committer | Case Duckworth | 2023-02-10 22:55:17 -0600 |
commit | cf190ae7b5c775efcd725fbb836d93f4246feac0 (patch) | |
tree | eb6cf4a00b060cbf8e8b85c9fd3e6091f0434d3e /examples | |
parent | Add Makefile (diff) | |
download | misc-cf190ae7b5c775efcd725fbb836d93f4246feac0.tar.gz misc-cf190ae7b5c775efcd725fbb836d93f4246feac0.zip |
Add examples/yt-dlp
Diffstat (limited to 'examples')
-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 | ||