how to include a directory in the package debuild
a Simple Debian package would be created in following steps, the following steps would be tutorial for beginners consider i have a file lets say test.sh which would just print test on the screen #!/bin/sh set -e echo "this is sample debian package created " >&2 What should be the output after installing the debian package? A)I want to place the above file which i named as test.sh in /home/bla/Desktop/ after installing the package using "dpkg -i test-1.0.deb" In order to achieve above process follow the below mentioned steps as it mkdir test-1.0 cd test-1.0 #in order to place test.sh in /home