== Simple shell program with Makefile ==

Upstream package name: hello-sh
Upstream version name: 1.0
Sources: hello Makefile

This is a similar functionality program as example-0001-c-make.

This program is written in shell, instead.

1. Create source files under ./hello-sh-1.0/

 $ mkdir hello-sh-1.0/
 $ cd hello-sh-1.0/
 $ vim hello
 ...
 $ vim Makefile
 ...
 $ cd -

=> step1

2. Create upstream tarball, 
   make templates, and 
   build Debian source and binary packages
   (all in one command)

Since this is not a compiled C program, the binary package is arch:all script
package.

 $ cd hello-sh-1.0/
 $ debmake -t -b'-:script' -i debmake
 $ cd -

=> step2

