diff --git a/debmaker b/debmaker new file mode 100755 index 0000000..1ba68a2 --- /dev/null +++ b/debmaker @@ -0,0 +1,38 @@ +#!/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 ] [edit ];; +esac