PDA

View Full Version : [ubuntu] How to make a DEB from a tar.gz, here code...



frenchn00b
January 26th, 2010, 10:32 PM
apt-get install dh-make build-essential
#and so on


unpack the tar.gz i.e. ${1}


make clean ; DEBFULLNAME="myname" ; export DEBFULLNAME ; dh_make -e myname@gmail.com -f "../${1}"
./configure ; make ; dpkg-buildpackage -rfakeroot



is it the right procedure ?