diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2020-09-29 20:16:26 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2020-09-29 20:16:26 -0300 |
commit | 05b63a39883120559461ec1b651324d3d7625cc9 (patch) | |
tree | 7c45672fb37d7eddff7095b9888bcea569bb82c5 /share/hoarder/archivebox/unix/linux | |
parent | 18b45a3c11b562700891ed9209c2e808bc7b7cf3 (diff) | |
download | trashman-05b63a39883120559461ec1b651324d3d7625cc9.tar.gz trashman-05b63a39883120559461ec1b651324d3d7625cc9.tar.bz2 |
Feat: hoarder: adds archivebox and youtube-dl
Diffstat (limited to 'share/hoarder/archivebox/unix/linux')
-rwxr-xr-x | share/hoarder/archivebox/unix/linux/debian/install | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/share/hoarder/archivebox/unix/linux/debian/install b/share/hoarder/archivebox/unix/linux/debian/install new file mode 100755 index 0000000..b9767eb --- /dev/null +++ b/share/hoarder/archivebox/unix/linux/debian/install @@ -0,0 +1,22 @@ +#!/usr/bin/env sh +# +# Install rainbowstream +# https://archivebox.io +# https://github.com/pirate/ArchiveBox + +# Parameters +SHARE="$1" +LIB="$2" + +# Include basic functions +. $LIB/trashman/functions || exit 1 +. $LIB/trashman/debian || exit 1 + +# Requirements +trashman_apt_install_packages install python3 python3-pip python3-dev git curl wget youtube-dl chromium npm + +# Youtube-dl +hoarder install youtube-dl + +# Install +pip3 install --user -U archivebox |