Skip to content
This repository was archived by the owner on Apr 11, 2018. It is now read-only.

Commit c898d1a

Browse files
committed
Update for version 7.0.1
1 parent 6808dca commit c898d1a

3 files changed

Lines changed: 13 additions & 9 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
bin/
22
tmp/
3+
monodevelop/

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
This is a simple .run installer for the newest version of MonoDevelop. I created this since the flatpak version is still quite unstable (flatpak version sandboxes the app which hides the system folders from it, this makes debugging stuff which requires system libraries impossible since they can't load system libs, and there are also problems with using MonoGame for example which is depandand on the content builder, which gets installed in /usr).
44

5-
This uses MonoDevelop binaries from Arch Linux "extra" repo: https://www.archlinux.org/packages/extra/x86_64/monodevelop/
6-
75
## Installing
86

97
To install simply download a release and do:
@@ -24,5 +22,10 @@ To build from source, simply download and call the generate script as seen bello
2422
```
2523
git clone https://github.com/cra0zy/monodevelop-run-installer.git
2624
cd monodevelop-run-installer
25+
git clone https://github.com/mono/monodevelop.git
26+
cd monodevelop
27+
./configure
28+
make
29+
cd ..
2730
./generate.sh
2831
```

generate.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
mkdir tmp
55
cd tmp
66

7-
echo "Downloading metadata..."
8-
URL="https://www.archlinux.org/packages/extra/x86_64/monodevelop/download/"
7+
#echo "Downloading metadata..."
8+
#URL="https://www.archlinux.org/packages/extra/x86_64/monodevelop/download/"
99

10-
echo "Downloading MonoDevelop... ($URL)"
11-
wget -O monodevelop.tar.xz $URL &> /dev/null
10+
#echo "Downloading MonoDevelop... ($URL)"
11+
#wget -O monodevelop.tar.xz $URL &> /dev/null
1212

13-
echo "Extracting archive..."
14-
tar xf monodevelop.tar.xz
13+
#echo "Extracting archive..."
14+
#tar xf monodevelop.tar.xz
1515

1616
echo "Copying installer data..."
1717

@@ -21,7 +21,7 @@ cp -rf ../src/. installer
2121

2222
# Copy MonoDevelop binaries
2323
mkdir installer/MonoDevelop
24-
cp -rf usr/lib/monodevelop/. installer/MonoDevelop
24+
cp -rf ../monodevelop/. installer/MonoDevelop
2525
# Lets not include version control addin so that people don't ask me why it's not working...
2626
rm -rf installer/MonoDevelop/AddIns/VersionControl
2727

0 commit comments

Comments
 (0)