forked from beagle-dev/beagle-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
35 lines (23 loc) · 1.06 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# @author Marc A. Suchard
# @author Andrew Rambaut
This is a stem README file. This file will contain:
1. General overview of BEAGLE
2. Compilation instructions
Quick and dirty instructions on how to compile and install the BEAGLE library from the SVN repository 'trunk':
$ svn checkout http://beagle-lib.googlecode.com/svn/trunk BEAGLE
$ cd BEAGLE
$ ./autogen.sh
$ ./configure
$ make
$ sudo make install
Remarks:
When compiling in the MacOS Unix environment ("Terminal"), you need to install the autotools first. They are no
longer shipped with Xcode. For instance, you can install them using MacPorts (http://www.macports.org). First
install MacPorts, then do:
$ sudo port install autoconf
$ sudo port install automake
$ sudo port install libtool
$ sudo port install pkgconfig
The last tool is not needed by BEAGLE but by many other software packages. Other options to install autotools
include Homebrew (http://mxcl.github.io/homebrew/) and directly from GNU source (http://www.gnu.org).
3. Contact information