You are not logged in.
Today I tried to compile monodevelop and it even worked right out of the box!
So I want to share with you my PKGBUILD's I created with all the necessary dependent packages:
First right to monodevelop:
# Contributor: Daniel Egger <degger@bluemail.ch>
pkgname=monodevelop
pkgver=0.2
pkgrel=1
pkgdesc=" MonoDevelop is a project to port SharpDevelop to Gtk#"
depends=('gtk-sharp' 'mono' 'gtksourceview-sharp' 'gecko-sharp' 'monodoc'
'orbit2' 'gnome-vfs' 'gtksourceview')
source=(http://www.go-mono.com/archive/$pkgname-$pkgver.tar.gz)
url="http://www.go-mono.com"
md5sums=('2c2ca5b3e951e2aa46d0433470cee391')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
}
AIR - http://bliss-solutions.org/archlinux/in … php?id=592
The newest monodoc (I updated the package in incoming)
# Contributor: Daniel Egger <degger@bluemail.ch>
pkgname=monodoc
pkgver=0.13
pkgrel=1
pkgdesc="The mono documentation"
depends=('gtk-sharp' 'mono')
source=(http://www.go-mono.com/archive/$pkgname-$pkgver.tar.gz)
url="http://www.go-mono.com"
md5sums=('0caa3508b38d89cd14a6391e83731fe2')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
}
AIR - http://bliss-solutions.org/archlinux/in … php?id=313
gecko-sharp (formerly called gtkmozembed-sharp AFAIK...)
# Contributor: Daniel Egger <degger@bluemail.ch>
pkgname=gecko-sharp
pkgver=0.1
pkgrel=1
pkgdesc="gecko sharp"
depends=('gtk-sharp' 'mono' 'gtk2' 'mozilla')
source=(http://www.go-mono.com/archive/$pkgname-$pkgver.tar.gz)
url="http://www.go-mono.com"
md5sums=('f6994a76d090bc6e7a484f5af42a6745')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
}
AIR - http://bliss-solutions.org/archlinux/in … php?id=590
and finally gtksourceview-sharp
# Contributor: Daniel Egger <degger@bluemail.ch>
pkgname=gtksourceview-sharp
pkgver=0.1.0
pkgrel=1
pkgdesc="a customized version of gtksourceview"
depends=('gtk-sharp' 'mono' 'gtksourceview')
source=(http://www.go-mono.com/archive/$pkgname-$pkgver.tar.gz)
url="http://www.go-mono.com"
md5sums=('c7bf339a41c80934a31f79f0717e2f0f')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
}
AIR - http://bliss-solutions.org/archlinux/in … php?id=591
I hesitate to put the packages to incoming cause I'm not sure if I've done all things right! So comment please the PKGBUILD's
Offline
Just wanted to inform everybody that the monodevelop package doesn't work anymore since the Gnome-Update.
And recompilation gives just strange errors... :cry:
Offline
there is a monodevelop in TUR. is this yours?
Offline
No, it's not mine
I just discovered the TUR of brice today...
I will try them out
Offline
I just tried the monodoc and monodevelop from the brice TUR, and they both can't find the SharpZipLib library. I know it's there though, I looked. Anybody know how to fix this? BTW, noob here.
EDIT: I just tried symlinking the SharpZipLib dll into the calling dirs, and there's a whole slew of errors besides the #ziplib. Do you think this is a problem with how the packages were made or with my setup?
ACK! I just noticed this thread's a month old Maybe the packages are built against the wrong version of mono?
Offline