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

Commit 6808dca

Browse files
committed
Update to use Arch Linux extra repo as source
1 parent 93841bc commit 6808dca

File tree

2 files changed

+2
-13
lines changed

2 files changed

+2
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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 @fusion809 PKBUILD repo for Arch Linux: https://github.com/fusion809/PKGBUILDs
5+
This uses MonoDevelop binaries from Arch Linux "extra" repo: https://www.archlinux.org/packages/extra/x86_64/monodevelop/
66

77
## Installing
88

generate.sh

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,7 @@ mkdir tmp
55
cd tmp
66

77
echo "Downloading metadata..."
8-
{
9-
URLS="$(
10-
curl https://github.com/fusion809/PKGBUILDs/releases | \
11-
grep 'monodevelop' | \
12-
grep -o '<a href=['"'"'"][^"'"'"']*['"'"'"]' | \
13-
sed -e 's/^<a href=["'"'"']//' -e 's/["'"'"']$//' \
14-
)"
15-
} &> /dev/null
16-
for URL in $URLS
17-
do
18-
URL="https://www.github.com$URL"
19-
done
8+
URL="https://www.archlinux.org/packages/extra/x86_64/monodevelop/download/"
209

2110
echo "Downloading MonoDevelop... ($URL)"
2211
wget -O monodevelop.tar.xz $URL &> /dev/null

0 commit comments

Comments
 (0)