debmaker/debmaker
thomas 3deb21e79d Add main script debmaker
Fix : use original date file in deb
Update version of application : authelia element-web mautrix-whatsapp
2022-03-19 05:53:30 +01:00

38 lines
557 B
Bash
Executable file

#!/bin/bash
case $1 in
list)
ls ressources;;
run)
if [ -e ressources/$2/debmaker ]
then
. ressources/$2/debmaker
debmaker_run
else
echo no $2 project
fi
;;
edit)
if [ -e ressources/$2/debmaker ]
then
nano ressources/$2/debmaker
else
echo no $2 project
fi
;;
chroot)
if [ -e ressources/$2/debmaker ]
then
if [ -e cache/$2 ]
then
. ressources/$2/debmaker
debmaker_chroot cache/$2
else
echo no cache file
fi
else
echo no $2 project
fi
;;
*)
echo debmaker [list] [chroot app] [run <app>] [edit <app>];;
esac