Where is the Source code of calculator apps in ubuntu?
Where is the source code of the calculator apps in ubuntu located?
How to edit the source code so that it is possible to add new features by writing some code.
2 Answers
You can run this command in terminal
apt-get source gcalctoolThe files will be placed in your /home directory
1The application is named gcalctool and is developed under GNOME.
It is hosted on GNOME Git. Get the source code
You can get the source code by using git and running the command
git clone git://which will get you the development version of the code.
and then you will find the folder name gcalctool which will contain the source code with the complete history
You can download the release from their ftp site where the latest release at the moment is 6.6 - Download the latest tarball
0