If I want to make minor changes to the source code of a Debian package, how do I go about downloading, incrementing the package version, building the (modified) source, and installing it on my computer?
If I want to make minor changes to the source code of a Debian package, how do I go about downloading, incrementing the package version, building the (modified) source, and installing it on my computer?
There's basically two ways to do it, the first one is the classic form, you'll get the source with:
Classic
Then you'll be able to modify it:
Rebuild it:
And install it:
New Ubuntu Approach
The new way (the Ubuntu way) is by using bzr branches, you'll get the code by using:
You can also get the code using:
pull-lp-source
used to be called justlp-source
in older versions.Then you'll be able to edit it:
Rebuild it:
And install it:
I recommend that you check the Ubuntu packaging guide out to know the details.
Also you might enconter problems if the package depends of others