You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
570 B
21 lines
570 B
8 years ago
|
import 'compile/configure'
|
||
|
|
||
|
name=mono
|
||
|
majver=4.6.2
|
||
|
version=$majver.7 # TODO: Untested
|
||
|
update_url="https://download.mono-project.com/sources/$name/"
|
||
|
|
||
|
dlextract "https://download.mono-project.com/sources/$name/$name-$version.tar.bz2" \
|
||
|
'601a96baa96a2e7acde1fb7e622322c4'
|
||
|
header_end
|
||
|
|
||
|
cd "$name-$majver"
|
||
|
|
||
|
# Fix mono_libdir
|
||
|
#sed -i -e "/mono_libdir=/s/\/lib/\/$(safe_sed "$dir_libdir")/" ./configure
|
||
|
|
||
|
# TODO: Move everything to the proper user-selected libdir
|
||
|
compile_configure -- --libdir="/$dir_prefix/lib"
|
||
|
|
||
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab:
|