blob: 0b3032228874443ffbb3f1e5e187727c83b8680c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# $Id: PKGBUILD 14206 2010-04-02 08:59:16Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Tom K <tomk@runbox.com>
# Contributor: Todd Musall <tmusall@gmail.com>
pkgname=gnubiff-gtk
pkgver=2.2.13
pkgrel=2
pkgdesc="Mail notification program that checks for mail and displays headers when new mail has arrived. GTK version."
arch=('i686' 'x86_64')
url="http://gnubiff.sourceforge.net/"
license=("GPL")
depends=('libglade' 'openssl' 'popt')
conflicts=(gnubiff)
source=(http://downloads.sourceforge.net/sourceforge/gnubiff/gnubiff-$pkgver.tar.gz \
build.patch)
md5sums=('65423957eb027b94c9e661611c0e4271'
'96fde605eb69e300f6014546d4339beb')
build() {
cd $startdir/src/gnubiff-$pkgver
patch -p1 <../build.patch
export LDFLAGS=-lX11
./configure --prefix=/usr --disable-gnome --disable-fam --with-password --with-password-string
make || return 1
make DESTDIR=$startdir/pkg install || return 1
rm -rf $startdir/pkg/usr/lib
rm -rf $startdir/pkg/usr/share/gnome-2.0
rm -rf ${pkgdir}/usr/share/info/dir
}
|