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

Commit 34e0f1f

Browse files
committed
fixes and fixes and fixes
1 parent c898d1a commit 34e0f1f

File tree

3 files changed

+308
-23
lines changed

3 files changed

+308
-23
lines changed

README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,7 @@ The installer will add "MonoDevelop Stable" application launcher, as well as the
1818

1919
## Building installer from source
2020

21-
To build from source, simply download and call the generate script as seen bellow:
21+
To build from source, simply download and install monodevelop from flatpak, and than just call the generate script:
2222
```
23-
git clone https://github.com/cra0zy/monodevelop-run-installer.git
24-
cd monodevelop-run-installer
25-
git clone https://github.com/mono/monodevelop.git
26-
cd monodevelop
27-
./configure
28-
make
29-
cd ..
3023
./generate.sh
3124
```

generate.sh

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,11 @@
11
#!/bin/bash
22
# https://github.com/fusion809/PKGBUILDs/releases
33

4+
MDFDIR="$HOME/.local/share/flatpak/app/com.xamarin.MonoDevelop/current/active/files"
5+
46
mkdir tmp
57
cd tmp
68

7-
#echo "Downloading metadata..."
8-
#URL="https://www.archlinux.org/packages/extra/x86_64/monodevelop/download/"
9-
10-
#echo "Downloading MonoDevelop... ($URL)"
11-
#wget -O monodevelop.tar.xz $URL &> /dev/null
12-
13-
#echo "Extracting archive..."
14-
#tar xf monodevelop.tar.xz
15-
169
echo "Copying installer data..."
1710

1811
# Copy installer source
@@ -21,12 +14,9 @@ cp -rf ../src/. installer
2114

2215
# Copy MonoDevelop binaries
2316
mkdir installer/MonoDevelop
24-
cp -rf ../monodevelop/. installer/MonoDevelop
25-
# Lets not include version control addin so that people don't ask me why it's not working...
26-
rm -rf installer/MonoDevelop/AddIns/VersionControl
27-
28-
# Copy MonoDevelop icon
29-
cp usr/share/icons/hicolor/scalable/apps/monodevelop.svg installer/monodevelop-stable.svg
17+
cp -rf $MDFDIR/lib/monodevelop/. installer/MonoDevelop
18+
# Lets not include git version control addin so that people don't ask me why it's not working...
19+
rm -rf installer/MonoDevelop/AddIns/VersionControl/MonoDevelop.VersionControl.Git.dll
3020

3121
echo "Building the Installer..."
3222
rm -f ../bin

0 commit comments

Comments
 (0)