commit of the day

This commit is contained in:
thomas 2023-07-11 23:00:08 +02:00
parent 0925d5a9e4
commit 568c7a4342
19 changed files with 67 additions and 64 deletions

View file

@ -1,23 +1,27 @@
#!/bin/bash
APP=gotify
VERSION=2.2.5
VERSION=2.2.4
GIT_VERSION=v$VERSION
DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M)
DEBIAN_VERSION_CODENAME=bookworm
DEBIAN_VERSION_CODENAME=bullseye
IMAGE_SIZE=6
DEPOT=https://github.com/gotify/server.git
PACKAGE_DEPENDENCY="build-essential nodejs yarn"
main(){
base_package_upgrade
envinit
get_git_source
build
makedeb
}
envinit() {
configure_depot_yarn
configure_depot_nodejs
install_package_dependency
install_go
get_git_source
build
makedeb
}
build() {