зеркало из
1
0
Форкнуть 0
Перейти к файлу
Jo Shields 5767dc0812
Create gbp.conf
2021-03-01 09:06:13 -05:00
Mono.Profiler Import Debian changes 4.2-3 2019-07-15 11:08:31 -04:00
asn1view Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
create-native-map Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
debian Create gbp.conf 2021-03-01 09:06:13 -05:00
docbrowser Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
gendarme Import Debian changes 4.2-3 2019-07-15 11:08:31 -04:00
gsharp Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
gui-compare Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
ilcontrast Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
minvoke Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
mperfmon Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
po Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
webdoc Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
AUTHORS Imported Upstream version 2.4.3 2010-04-12 16:01:30 +01:00
COPYING Imported Upstream version 2.4.3 2010-04-12 16:01:30 +01:00
COPYING.LIB Imported Upstream version 2.4.3 2010-04-12 16:01:30 +01:00
ChangeLog Imported Upstream version 2.10 2011-03-20 23:36:34 +00:00
INSTALL Imported Upstream version 3.10 2014-10-08 12:30:36 +01:00
Makefile.am Imported Upstream version 2.10 2011-03-20 23:36:34 +00:00
Makefile.in Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
NEWS Imported Upstream version 2.4.3 2010-04-12 16:01:30 +01:00
README Imported Upstream version 2.11+git20131009.5b1ef35 2013-10-10 01:03:13 +02:00
aclocal.m4 Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
compile Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
config.guess Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
config.sub Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
configure Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
configure.in Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
install-sh Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
missing Imported Upstream version 4.2 2016-04-06 17:37:34 +01:00
mono-tools.spec.in Imported Upstream version 2.11+git20131009.5b1ef35 2013-10-10 01:03:13 +02:00

README

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