diff options
Diffstat (limited to 'extra/mono-basic/PKGBUILD')
-rw-r--r-- | extra/mono-basic/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/extra/mono-basic/PKGBUILD b/extra/mono-basic/PKGBUILD new file mode 100644 index 000000000..0ffd93c05 --- /dev/null +++ b/extra/mono-basic/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 111509 2011-02-27 11:33:57Z daniel $ +# Maintainer: Daniel Isenmann <daniel@archlinux.org> + +pkgname=mono-basic +pkgver=2.10 +pkgrel=1 +pkgdesc="Mono Visual Basic.NET compiler" +arch=(i686 x86_64) +license=('GPL') +url="http://www.mono-project.com/" +depends=('mono>=2.10.1') +makedepends=('pkgconfig') +source=(http://ftp.novell.com/pub/mono/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2) +md5sums=('b459890e5447419ab1a5ea43d9b8afe8') + +build() { + # get rid of that .wapi errors; thanks to brice + export MONO_SHARED_DIR=${startdir}/src/weird + mkdir -p "${MONO_SHARED_DIR}" + # build mono + cd ${startdir}/src/${pkgname}-${pkgver} + ./configure --prefix=/usr + sed -i 's/\/usr\/bin\/install/\/bin\/install/g' man/Makefile || return 1 + make || return 1 + make DESTDIR=${startdir}/pkg install +} + + |