File: README

package info (click to toggle)
mono-tools 3.10-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 13,804 kB
  • ctags: 18,095
  • sloc: cs: 100,891; sh: 3,927; makefile: 2,039; xml: 126
file content (34 lines) | stat: -rw-r--r-- 887 bytes parent folder | download | duplicates (6)
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
34
Mono Tools:
----------

Mono Tools is a collection of development and testing programs and 
utilities for use with Mono.


Building:
--------

Building from a source tarball should be as simple as:

    ./configure [typical configure flags, such as --prefix=PREFIX]
    make
    make install

Building from git is almost identical, except that you need to
execute autogen.sh to create the configure script (which will be
automatically executed):

    git clone https://github.com/mono/mono-tools.git
    ./autogen.sh [typical configure flags, such as --prefix=PREFIX]
    make
    make install

Building on OSX with homebrew:
------------------------------

Have the following packages installed:
autoconf pkg-config	readline automake gettext glib intltool libtool

Run autogen like this:
PKG_CONFIG_PATH=/Library/Frameworks/Mono.framework/Versions/Current/lib/pkgconfig/ ./autogen.sh