Respuestas:
Ok, entonces un método para intentar instalarlo será compilarlo. Para hacer esto, siga los pasos en la terminal:
wget http://gnu.mirrors.linux.ro/emacs/emacs-24.4.tar.gz
tar -xzvf emacs-24.4.tar.gz
./configure
make
sudo make install
De alguna manera, lo que describí anteriormente son los pasos para compilar e instalar un software en las distribuciones de Linux desde las fuentes. Además, tenga en cuenta que puede tener algunas dependencias faltantes, para instalarlo (emacs) también deberá instalar las dependencias, pero eso se puede hacer con sudo apt-get install <dependency_name>
o repitiendo los pasos para cada dependencia.
¡Espero poder ayudarte!
Emacs 24.4 compila y funciona perfectamente en el nuevo Raspberry pi 2, siguiendo estas instrucciones:
sudo apt-get install texinfo libncurses5-dev
Instalar dependencias relacionadas con X:
sudo apt-get install xorg-dev libpng12-dev libjpeg8-dev libgif-dev libtiff5 libtiff5-dev
Ejecute el script de configuración:
./configure --prefix /opt/emacs
Agregue --without-x al final del comando de configuración si no necesita compatibilidad con X.
Ejecute make:
make
Compruebe que emacs binary fue construido y funciona:
./src/emacs
Si Emacs se cargó bien, salga y ejecute make install:
make install
Alternativamente, use jessie que tiene emacs 24.4.1 en el repositorio.
harry ~ $ cat /etc/os-release
PRETTY_NAME="Raspbian GNU/Linux jessie/sid"
NAME="Raspbian GNU/Linux"
ID=raspbian
ID_LIKE=debian
HOME_URL="http://www.raspbian.org/"
SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"
harry ~ $ emacs --v
GNU Emacs 24.4.1
Copyright (C) 2014 Free Software Foundation, Inc.
GNU Emacs comes with ABSOLUTELY NO WARRANTY.
You may redistribute copies of Emacs
under the terms of the GNU General Public License.
For more information about these matters, see the file named COPYING.
harry ~ $
Si. Pude instalar con éxito :
pi@raspberrypi:~ $ emacs --version
GNU Emacs 24.4.1
Copyright (C) 2014 Free Software Foundation, Inc.
GNU Emacs comes with ABSOLUTELY NO WARRANTY.
You may redistribute copies of Emacs
under the terms of the GNU General Public License.
For more information about these matters, see the file named COPYING.
pi@raspberrypi:~ $
Aquí están los pasos :
1) actualice el apt-get:
sudo apt-get update
2) instalar emacs:
sudo apt-get install emacs
./configure
? Si es así, debe mencionarse para hacer de esto un consejo completo.