mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
31 lines
1.1 KiB
Bash
31 lines
1.1 KiB
Bash
# $Id: PKGBUILD 2565 2009-09-19 16:30:11Z foutrelis $
|
|
# Maintainer: Roman Kyrylych <roman@archlinux.org>
|
|
|
|
pkgname=balsa
|
|
pkgver=2.3.28
|
|
pkgrel=2
|
|
pkgdesc="An e-mail client for GNOME"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
url='http://balsa.gnome.org'
|
|
depends=('gtk2>=2.10' 'libgtkhtml>=2.11.0' 'libesmtp>=1.0.4' 'gmime>=2.2.6'
|
|
'gtkspell>=2.0.11' 'gpgme>=1.1.3' 'gtksourceview2>=2.2' 'pcre>=7.0'
|
|
'libgnomeui>=2.18.1-2' 'libnotify' 'heimdal' 'hicolor-icon-theme')
|
|
makedepends=('perlxml' 'gnome-doc-utils>=0.11.2' 'intltool' 'xorg-server')
|
|
install=balsa.install
|
|
source=(http://balsa.gnome.org/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('c9ea1f5683fc094b1ffcab7b9e66dd5c')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
# gpgme needs largefile support
|
|
export CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
|
|
--with-gtkhtml=2 --disable-more-warnings \
|
|
--with-ssl --enable-threads --with-gss --with-ldap \
|
|
--with-gpgme --with-gtkspell --with-gtksourceview=2 || return 1
|
|
make || return 1
|
|
make GTK_UPDATE_ICON_CACHE=/bin/true DESTDIR="$pkgdir" install || return 1
|
|
}
|