1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-01-02 21:26:08 +00:00

Added the download of the latest release to the script :)

nicedevil007 2023-11-19 15:44:52 +01:00
parent e56dccb047
commit b7bd51a8e3

@ -2,10 +2,12 @@ Here you can find instruction to install Jackett on Alpine Linux.
```
# requirements on alpine/musl:
apk add --no-cache sqlite-libs gcompat bash icu-libs krb5-libs libgcc libintl libssl1.1 libstdc++ zlib
apk add --no-cache sqlite-libs gcompat bash icu-libs krb5-libs libgcc libintl libssl1.1 libstdc++ zlib curl
# Extract Musl build to /opt:
# Download and Extract Musl build to /opt:
cd /opt
RELEASE=$(curl -s https://api.github.com/repos/Jackett/Jackett/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
wget https://github.com/Jackett/Jackett/releases/download/v${RELEASE}/Jackett.Binaries.LinuxMuslAMDx64.tar.gz
tar -C . -xvf "Jackett.Binaries.LinuxMuslAMDx64.tar.gz"
rm "Jackett.Binaries.LinuxMuslAMDx64.tar.gz"