mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
28 lines
875 B
Bash
28 lines
875 B
Bash
# $Id: PKGBUILD 31433 2009-03-26 22:40:03Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=evolution-sharp
|
|
pkgver=0.20.0
|
|
pkgrel=1
|
|
pkgdesc="C# bindings for Novell Evolution"
|
|
arch=(i686 x86_64)
|
|
license=('GPL')
|
|
url="http://ftp.gnome.org/pub/GNOME/sources/evolution-sharp/"
|
|
depends=('evolution-data-server>=2.26.0')
|
|
makedepends=('pkgconfig' 'gtk-sharp-2>=2.12.8')
|
|
options=('!libtool')
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/0.20/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('ca4f75a795aa2af36c4573971c0534f7')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
export MONO_SHARED_DIR="${startdir}/src/.wabi"
|
|
mkdir -p "${MONO_SHARED_DIR}"
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--localstatedir=/var --disable-static || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
rm -f "${pkgdir}/usr/lib/libevolutionglue.a"
|
|
}
|
|
|