Update version

This commit is contained in:
thomas 2022-11-21 22:52:21 +01:00
parent e7009df100
commit 7ef4baf9a9
10 changed files with 67 additions and 33 deletions

View file

@ -7,17 +7,21 @@ GIT_VERSION=v$VERSION
DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M)
DEBIAN_VERSION_CODENAME=bookworm
IMAGE_SIZE=4
PACKAGE_DEPENDENCY="composer php-simplexml php-gd unzip yarn nodejs"
STEP="base_package_upgrade envinit get_git_source build makedeb"
envinit() {
main() {
base_package_upgrade
configure_depot_yarn
apt-get install -y --no-install-recommends composer php-simplexml php-gd unzip yarn
install_package_dependency
get_git_source
build
makedeb
}
build() {
set +x
cd /tmp/grocy
export COMPOSER_ALLOW_SUPERUSER=1
composer install -n
yarn install
}