Sign in with
Sign up | Sign in
Your question

I require help on installing a program on my Lubuntu.

Tags:
  • Lubuntu
  • Games
Last response: in Linux/Free BSD
Share
July 24, 2014 1:48:00 PM

Ok I am a realitivity new fan of the game angband, and love D&D style games. I currently have the 3.3.2 version however I want the 3.5.0 version. I am so confused on how to get this to install? Can someone help me cause I have an 8 hour headach trying to understand this... Please help this is the source http://rephial.org/downloads/3.5/angband-v3.5.0.tar.gz
I honestly need a step by step if anyone is so inclined to help.

More about : require installing program lubuntu

July 24, 2014 2:06:07 PM

The instructions are provided in the .tar.gz
You will need to compile the game from the source code. Read the "compiling.txt" for compiling instructions.
You may first need some tools to compile stuff.
  1. sudo apt-get install build-essential autoconf automake


Now download tar.gz to your drive somewhere. open terminal. cd into directory where the angband file is located, then:

  1. tar -xzf angband-v3.5.0.tar.gz
  2. cd angband-v3.5.0/


Quote:
#compiling.txt
BUILDING ON LINUX / *NIX
========================

Native builds
-------------

Linux builds using autotools. There are several different front ends that you
can optionally build (GCU, SDL, X11, and GTK) using arguments to configure
such as --enable-sdl, --disable-gtk, etc. Each front end has different
dependencies (e.g. ncurses, SDL libraries, etc).

To build Angband to be run in-place:

./autogen.sh
./configure --with-no-install [other options as needed]
make

To build Angband to be installed in some other location:

./autogen.sh
./configure --prefix /path/to [other options as needed ]
make
make install

On some BSDs, you may need to copy install-sh into lib/ and various
subdirectories of lib/ in order to install correctly.

m
0
l
July 24, 2014 2:23:22 PM

skittle said:
The instructions are provided in the .tar.gz
You will need to compile the game from the source code. Read the "compiling.txt" for compiling instructions.
You may first need some tools to compile stuff.
  1. sudo apt-get install build-essential autoconf automake


Now download tar.gz to your drive somewhere. open terminal. cd into directory where the angband file is located, then:

  1. tar -xzf angband-v3.5.0.tar.gz
  2. cd angband-v3.5.0/


Quote:
#compiling.txt
BUILDING ON LINUX / *NIX
========================

Native builds
-------------

Linux builds using autotools. There are several different front ends that you
can optionally build (GCU, SDL, X11, and GTK) using arguments to configure
such as --enable-sdl, --disable-gtk, etc. Each front end has different
dependencies (e.g. ncurses, SDL libraries, etc).

To build Angband to be run in-place:

./autogen.sh
./configure --with-no-install [other options as needed]
make

To build Angband to be installed in some other location:

./autogen.sh
./configure --prefix /path/to [other options as needed ]
make
make install

On some BSDs, you may need to copy install-sh into lib/ and various
subdirectories of lib/ in order to install correctly.



ok im not too smart i have the file on my desktop and in my downloads/ and if you could possibly explain how to do it lin to line cause i cannot figure this out i want to put it in with my games and i feel about dumb as hell... please be kind and explain how to do this... like you would a 5 year old or probably more accuratly an 80year old. due to most 5 year olds can do this with no problem.... i will try this and get back with you
m
0
l
Related resources
July 24, 2014 2:40:03 PM

skittle said:
The instructions are provided in the .tar.gz
You will need to compile the game from the source code. Read the "compiling.txt" for compiling instructions.
You may first need some tools to compile stuff.
  1. sudo apt-get install build-essential autoconf automake


Now download tar.gz to your drive somewhere. open terminal. cd into directory where the angband file is located, then:

  1. tar -xzf angband-v3.5.0.tar.gz
  2. cd angband-v3.5.0/


Quote:
#compiling.txt
BUILDING ON LINUX / *NIX
========================

Native builds
-------------

Linux builds using autotools. There are several different front ends that you
can optionally build (GCU, SDL, X11, and GTK) using arguments to configure
such as --enable-sdl, --disable-gtk, etc. Each front end has different
dependencies (e.g. ncurses, SDL libraries, etc).

To build Angband to be run in-place:

./autogen.sh
./configure --with-no-install [other options as needed]
make

To build Angband to be installed in some other location:

./autogen.sh
./configure --prefix /path/to [other options as needed ]
make
make install

On some BSDs, you may need to copy install-sh into lib/ and various
subdirectories of lib/ in order to install correctly.



OK i get as far as cd to angband and
bash: ./autogen.sh: No such file or directory
please walk me thru this...
m
0
l
July 25, 2014 8:12:08 AM

I think there is a mistake in the 'compiling.txt'

I believe the autogen.sh is probably from a previous version and is no longer needed.

I have successfully compiled on my machine.
  1. cd ~/Downloads/angband-v3.5.0
  2. ./configure --with-no-install
  3. make
  4. cd src
  5. ./angband

m
0
l
!