From 486b5613adb8d6dda5def64eb029ffb79b8e9797 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Par=C3=B3czai=20Oliv=C3=A9r?= Date: Sat, 16 Oct 2021 21:46:42 +0000 Subject: [PATCH] Add buildscript --- MakePackage.sh | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 MakePackage.sh diff --git a/MakePackage.sh b/MakePackage.sh new file mode 100644 index 0000000..58c8f9b --- /dev/null +++ b/MakePackage.sh @@ -0,0 +1,28 @@ +#!/bin/bash +#Automatic buildscript for Nextcloud apps +#Made by @OliverParoczai +#Requires git, xmlstarlet, tar, and optionally openssl + +REPOURL="https://github.com/OliverParoczai/nextcloud-unroundedcorners.git" #official repo, change if forked +SIGN=FALSE #Sign the file for uploading to the official appstore +SIGNCERT=~/.nextcloud/certificates/unroundedcorners.key #The location of the key + +mkdir tmp + +echo "Cloning $REPOURL" +git clone -q $REPOURL tmp/unroundedcorners/ +VERSION=$(xmlstarlet sel -T -t -m '//info/version' -v . -n tmp/unroundedcorners/appinfo/info.xml) +echo "Version is ${VERSION}" + +echo "Starting compression" +tar --exclude='differences.png' --exclude=".git" -czf unroundedcorners-v${VERSION}.tar.gz -C tmp unroundedcorners/ + +rm -rf tmp + +if [ $SIGN ]; then + echo "" + echo "The signature:" + echo "" + openssl dgst -sha512 -sign $SIGNCERT unroundedcorners-v${VERSION}.tar.gz | openssl base64 + echo "" +fi