Update Script: Lazylibrarian (#1190)

* Update Script: LazyLibarian

* Changes
This commit is contained in:
Michel Roegl-Brunner 2025-01-03 19:27:35 +01:00 committed by GitHub
parent 8fd34ea277
commit 3a52f8dbfb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,15 +15,21 @@ network_check
update_os update_os
msg_info "Installing Dependencies" msg_info "Installing Dependencies"
$STD apt-get install -y curl $STD apt-get install -y \
$STD apt-get install -y sudo curl \
$STD apt-get install -y mc sudo \
$STD apt-get install -y git mc \
git \
libpng-dev \
libjpeg-dev \
libtiff-dev \
imagemagick
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Installing Python3 Dependencies" msg_info "Installing Python3 Dependencies"
$STD apt-get install -y pip $STD apt-get install -y \
$STD apt-get install -y python3-irc pip \
python3-irc
$STD pip install jaraco.stream $STD pip install jaraco.stream
$STD pip install python-Levenshtein $STD pip install python-Levenshtein
$STD pip install soupsieve $STD pip install soupsieve
@ -31,6 +37,8 @@ msg_ok "Installed Python3 Dependencies"
msg_info "Installing LazyLibrarian" msg_info "Installing LazyLibrarian"
$STD git clone https://gitlab.com/LazyLibrarian/LazyLibrarian /opt/LazyLibrarian $STD git clone https://gitlab.com/LazyLibrarian/LazyLibrarian /opt/LazyLibrarian
cd /opt/LazyLibrarian
$STD pip install .
msg_ok "Installed LazyLibrarian" msg_ok "Installed LazyLibrarian"
msg_info "Creating Service" msg_info "Creating Service"