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
./configure
? Si es así, debe mencionarse para hacer de esto un consejo completo.Alternativamente, use jessie que tiene emacs 24.4.1 en el repositorio.
fuente
Si solo va a usar
emacs
en la terminal, puede evitar el problema de instalar paquetes de desarrollo relacionados con la GUI haciendofuente
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
fuente