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/bla/Desktop, simply create the same directory structure in the test folder using this command
mkdir -p home/bla/Desktop/
cp test.sh home/bla/Desktop/
cd ..
cd ..
cd ..
mkdir DEBIAN
cd DEBIAN
add the control file with following contents
Package: test
Version: 1.0
Section: devel
Priority: optional
Architecture: all
Essential: no
Depends: bash
Pre-Depends: no
Recommends: no
Maintainer: test <test@test.test>
Replaces: no
Provides: no
Description: A sample testpackage in order to demonstrate how to create debian packages
Package is ready come outside of test folder and enter dpkg --build test-1.0/
your package is ready and you can install it by using dpkg -i test-1.0.deb
If i want to do the same process with dh_make and debuild, i was unable to add the directory structure where i wanted my test.sh to be placed after installation
steps which I followed:
mkdir test-1.0
copy the directory structure as above
cd test-1.0/ && mkdir -p home/bla/Desktop/ cp test.sh home/bla/Desktop/
dh_make -n -s -e test@test.com
cd debian
rm *.ex *.EX
cd ..
debuild -us -uc
no mater what my test.sh is not at all included in the package after, i donot know what is the reason that is what i have understood from debian manual
can any one know to do it, please let me asap.., i just want to know how i can include the files in the package when building debian package using debuild/dpkg-buildpackage like i have done in the first process which is very simple
A Q/D example utilizing dh* and dpkg-buildpackage:
1) Pepare working directory and test file (we are going to package "foo" script which should be installed to "/any/dir") :
2) Create simple Makefile which will handle installation:
3) Generate package skeleton:
3a) Optionally adjust debian control file
4) Build the package:
5) Test generated package contents:
Edit: Example without using Makefile (if you are not going to build anything):
1) Create test data:
2) Create package skeleton:
3) Create debian/test.install file with following contents:
4) Build package:
5) Examine built package: