allow multi ressource in commande line

update version
This commit is contained in:
thomas 2023-03-30 21:58:28 +02:00
parent e270a50847
commit dbef6baf09
16 changed files with 74 additions and 56 deletions

View file

@ -1,12 +1,12 @@
#!/bin/bash
VERSION=0.8.1
VERSION=0.8.3
APP=mautrix-whatsapp
DEPOT=https://github.com/mautrix/whatsapp.git
GIT_VERSION=v${VERSION}
DEBIAN_VERSION_CODENAME=bullseye
IMAGE_SIZE=4
PACKAGE_DEPENDENCY="debhelper-compat libolm-dev build-essential"
PACKAGE_DEPENDENCY="debhelper-compat libolm-dev build-essential devscripts"
main(){
echo deb http://deb.debian.org/debian bullseye-backports main > /etc/apt/sources.list.d/backports.list
@ -19,7 +19,10 @@ main(){
makedeb(){
cd /tmp/${APP}/
rm /tmp/*.deb
cp -fr /tmp/src/debian /tmp/${APP}
dpkg-buildpackage -us -uc
export DEBEMAIL=thomas@lgy.fr
dch -v ${VERSION}
dpkg-buildpackage -us -uc
cp /tmp/*.deb /tmp/dist
}