From 3e87bf6fa4baec15550d4322a447834f71b2c2df Mon Sep 17 00:00:00 2001 From: RealStickman Date: Thu, 1 Sep 2022 14:40:21 +0200 Subject: [PATCH] Script to download and build kavita --- alpine_build.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 alpine_build.sh diff --git a/alpine_build.sh b/alpine_build.sh new file mode 100755 index 0000000..511abfe --- /dev/null +++ b/alpine_build.sh @@ -0,0 +1,18 @@ +#!/bin/sh +set -eu + +# make sure location is root +cd / + +# use my fork for now +#git clone https://github.com/Kareadita/Kavita.git +git clone https://github.com/RealStickman/Kavita.git + +# enter repo +cd Kavita + +# use my branch for now +git checkout rs_alpine + +# start build for linux-musl-x64 +"/Kavita/build.sh" linux-musl-x64