]> wagnertech.de Git - projects.git/blob - Configure
Korrektur webssh executable
[projects.git] / Configure
1 #!/bin/bash
2 set -e
3
4 function usage {
5         cat <<USAGE
6 configure PROJECT
7 PROJECT = webssh
8 USAGE
9 }
10
11 if [ -z "$1" ]
12 then
13         usage
14         exit 7
15 fi
16
17 case $1 in
18 webssh)
19         cat <<WEBSSH >debian/webssh.conf
20 # generated by configure
21 compile_type=ANY
22 target_type=DEB
23 WEBSSH
24         mconfigure -V webssh
25         ;;
26 *)
27         echo "Invalid project."
28         usage
29         exit 25
30         ;;
31 esac