I am assuming that all application installed through apt-get
are open source; but for those that are available in that manner, where can I get the source code for these applications as well as update them?
I have a couple applications I use regularly that aren't being actively developed any longer and I would like to add features. Where would I go to get the rights to update these applications?
In this case specifically, I am referring to the hellanzb package
Best Answer
Use the command
apt-get source <package>
(don't use sudo with it) to download the source of a package.From
man apt-get
:To build a package from source, first install the build dependencies:
Then use
dpkg-buildpackage
to create a.deb
file. From APT and Dpkg Quick Reference Sheet:In a terminal,
cd
into the directory containing the package source (e.g~/code/hellanzb-0.13
) and run the following command:If the build is successful, there will be a
.deb
file located in the parentdirectory (e.g
~/code/hellanzb_0.13-6.1_all.deb
).