source: git/INSTALL @ ea8d9a1

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-data
Last change on this file since ea8d9a1 was 2c1c52e, checked in by Olly Betts <olly@…>, 8 years ago

Use https for more URLs which support it

  • Property mode set to 100644
File size: 1.7 KB
Line 
1Installing Survex on Unix
2=========================
3
4If you are using Debian Linux or Ubuntu Linux or a distribution based
5on one of these, you will find it easier to install one of the
6prepackaged versions of Survex.
7
8Otherwise building from source is very easy.  First of all, you need
9to make sure you have the required libraries installed.  The main
10dependency is wxWidgets 2.8 or later - if there's a suitable wxWidgets
11package for your platform, then just use that (note: library packages
12are usually split into runtime and development, usually with the same
13name but with a -dev or -devel or similar suffix on the latter - you'll
14need both to build Survex).
15
16Otherwise download the source code from https://wxwidgets.org/ and
17follow their build instructions.  IMPORTANT: You must enable OpenGL
18support by adding --with-opengl to the configure command line, and
19you probably want to use --enable-unicode too.
20
21You'll also need a working C and C++ compiler, and also the OpenGL development
22libraries if these aren't pulled in by installing wxWidgets.
23
24Then at a shell prompt, enter the following commands:
25
26./configure
27make
28make install
29
30By default 'make install' will try to install Survex under /usr/local,
31which means you'll probably need to become root for the 'make install' stage.
32If you use sudo to manage root access, then:
33
34sudo make install
35
36You can tell configure to install Survex elsewhere (e.g. under your home
37directory) like so:
38
39./configure --prefix=/home/olly/survex
40make
41make install
42
43If your wxWidgets installation isn't picked up automatically, or you
44have more than one version installed and want to select a particular
45one, then you can specify this like so:
46
47./configure WX_CONFIG=/opt/bin/wx-config
48
49You can use both --prefix and WX_CONFIG= if necessary.
Note: See TracBrowser for help on using the repository browser.