Anjuta - Programming Environment
Anjuta is a versatile Integrated Development Environment (IDE) for C and C++ on GNU/Linux. It has been written for GTK/GNOME and features a number of advanced programming facilities. These include project management, application wizards, an on-board interactive debugger, and a powerful source editor with source browsing and syntax highlighting.
Anjuta is an effort to marry the flexibility and power of text-based command-line tools with the ease-of-use of the GNOME graphical user interface. That is why it has been made as user-friendly as possible.
Since there is no easy way to install this other then the terminal i’m providing this in source.
SCREENSHOTS:
![]() |
![]() |
![]() |
Obtaing Anjuta:
Software Author: Naba Kumar
Reconstructor Module Author: TheeMahn
Homepage: Anjuta
Debian: Anjuta - Programming environment
Rmod for reconstructor: Download right click save
Terminal: With all repos enabled.
Show Code
sudo apt-get install -y anjuta cvs autogen indent ctags devhelp gnome-devel
Reconstructor code:
Show Code
#!/bin/bash
#
# Reconstructor Module - Anjuta IDE programing environment
# Copyright (c) 2006 Reconstructor Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
RMOD_ENGINE=1.0
RMOD_CATEGORY=’Software’
RMOD_SUBCATEGORY=’Administration’
RMOD_NAME=’Anjuta IDE’
RMOD_AUTHOR=’TheeMahn’
RMOD_VERSION=0.1
RMOD_DESCRIPTION=’Installs Anjuta IDE programing environment.’
RMOD_RUN_IN_CHROOT=True
RMOD_UPDATE_URL=’http://reconstructor.aperantis.com/update/modules/’
echo Running $RMOD_NAME…
apt-get update
apt-get install -y anjuta cvs autogen indent ctags devhelp gnome-devel
# clean cache
apt-get clean
apt-get autoclean
echo $RMOD_NAME Finished…


