I am getting started with open source contributions and need to make-build the gnome-calculator.
I recently downloaded gnome 3 (ubuntu) and need to build the gnome-calculator which needs gtk+3.
I downloaded gtk+-3.12.0.tar.xz from this site: http://www.gtk.org/download/linux.php
After running ./configure --prefix=/opt/gtk , I get the following problem:
http://fpaste.org/101402/
However, package atk could not be located.
EDIT
Installing it from the repositories gives an older version that is not compatible with gnome-calculator ... I need to install the specific version only.
Asked
Active
Viewed 280 times
0
Sahil Sareen
- 51
1 Answers
0
Why don't you just install the current version and its sources? Should be as easy as
sudo apt-get build-dep gnome-calculator
and then (having the sources repository activated)
apt-get source gnome-calculator
And then try to compile it (to start from a known point) and start hacking.
Reference here: How do I get and modify the source code of packages installed through apt-get?