diff options
Diffstat (limited to 'extra/gluezilla/PKGBUILD')
-rw-r--r-- | extra/gluezilla/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/extra/gluezilla/PKGBUILD b/extra/gluezilla/PKGBUILD new file mode 100644 index 000000000..224068bd6 --- /dev/null +++ b/extra/gluezilla/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: Daniel Isenmann <daniel@archlinux.org> + +pkgname=gluezilla +pkgver=2.6 +pkgrel=3 +pkgdesc="Web browser implementation (Gecko) for Mono, the free .NET runtime" +arch=(i686 x86_64) +license=('LGPL2' 'MPL') +url="http://www.mono-project.com/" +depends=('mono' 'xulrunner>=2.0') +makedepends=('pkgconfig') +options=('!libtool') +source=(http://ftp.novell.com/pub/mono/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2 xulrunner2.0.patch xulrunner2.0_configure.patch) +md5sums=('bd4eb89747498945227877295fcd36b5' + '26ea3af3ef5ce045a13a3f3ee54cf0f6' + '06faa671dd791868701d98e610fcbc7e') + +build() { + cd ${srcdir}/gluezilla-${pkgver} + patch -p1 < ${srcdir}/xulrunner2.0.patch || return 1 + patch -p1 < ${srcdir}/xulrunner2.0_configure.patch || return 1 + + rm configure + autoconf + ./configure --prefix=/usr + make || return 1 + make DESTDIR=${pkgdir} install || return 1 + +} |