qbittorrent | adding files

> added new files to repo
This commit is contained in:
2023-11-26 22:17:10 -08:00
parent 790b3aff4c
commit ab8bcd805e
2 changed files with 141 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
#!/bin/bash
#
# qbittorrent-api pip3 package for Alpine Linux
# https://pkgs.alpinelinux.org/package/edge/testing/x86_64/py3-qbittorrent-api-pyc
#
#
echo "**"
echo "**"
echo "**"
echo "**"
echo "*******************************************"
echo "**** Adding the edge repo to the build ****"
echo "*******************************************"
echo "**"
# Add the "edge" testing repository
echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
echo "*******************************"
echo "**** Updating Alpine Linux ****"
echo "*******************************"
# Update the package list
apk update
echo "*********************************************************"
echo "**** Installing python3 and py3-pip for Alpine Linux ****"
echo "*********************************************************"
# Install Python and pip
apk add python3 py3-pip
echo "************************************************************************"
echo "**** Install qbittorrent-api thats in the edge repo of Alpine Linux ****"
echo "************************************************************************"
# Install qbittorrent-api
apk add py3-qbittorrent-api
echo "**"
echo "*********************************************************"
echo "**** done installing extra_packages for Alpine Linux ****"
echo "*********************************************************"
echo "**"
echo "**"
echo "**"
echo "**"