mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
32 lines
1 KiB
Bash
32 lines
1 KiB
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# 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.11
|
||
|
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=('d9e899f25b1e83081ccd3ac97ee31b8b'
|
||
|
'96fde605eb69e300f6014546d4339beb')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/gnubiff-$pkgver
|
||
|
|
||
|
patch -p1 <../build.patch
|
||
|
|
||
|
./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
|
||
|
}
|