https://github.com/mono/linux-packaging-mono-tools
https://github.com/mono/linux-packaging-mono-tools
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/mono/linux-packaging-mono-tools
- Owner: mono
- License: gpl-2.0
- Archived: true
- Created: 2014-10-08T11:29:57.000Z (over 11 years ago)
- Default Branch: main
- Last Pushed: 2021-03-01T14:06:13.000Z (over 5 years ago)
- Last Synced: 2025-03-06T18:24:31.654Z (over 1 year ago)
- Language: C#
- Size: 3.96 MB
- Stars: 1
- Watchers: 24
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
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