diff options
author | root <root@rshg054.dnsready.net> | 2012-01-31 23:14:57 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-01-31 23:14:57 +0000 |
commit | c34f78dd37c2a2015d43de5d89748a2f8147ba1b (patch) | |
tree | 2e3912930db02e8f8cbfa8a58eae203b886fa2d9 /community-staging | |
parent | 902eddd7e029eda6fc1c668b31e696c6ca3edbc7 (diff) |
Tue Jan 31 23:14:56 UTC 2012
Diffstat (limited to 'community-staging')
-rw-r--r-- | community-staging/gnubiff/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/community-staging/gnubiff/PKGBUILD b/community-staging/gnubiff/PKGBUILD new file mode 100644 index 000000000..e53334a8e --- /dev/null +++ b/community-staging/gnubiff/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 62993 2012-01-30 09:15:21Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: Tom K <tomk@runbox.com> +# Contributor: Todd Musall <tmusall@gmail.com> + +pkgname=gnubiff +pkgver=2.2.14 +pkgrel=1 +pkgdesc="Mail notification program that checks for mail and displays headers when new mail has arrived" +arch=('i686' 'x86_64') +url="http://gnubiff.sourceforge.net/" +license=("GPL") +depends=('libglade' 'gtk3' 'popt') +makedepends=('perlxml' 'intltool') +conflicts=(gnubiff-gtk) +source=(http://downloads.sourceforge.net/gnubiff/gnubiff-$pkgver.tar.gz) +md5sums=('f2a2c3485d2f3f0adff1b7665c2f3b24') + +build() { + [ "$GNOMEDIR" = "" ] && GNOMEDIR=/usr + cd $srcdir/gnubiff-$pkgver + + ./configure --prefix=/usr --with-password --with-password-string="65423957eb027b94c9e661611c0e4271" \ + --disable-fam --disable-gnome + make + make DESTDIR=$pkgdir install + + rm -rf ${pkgdir}/usr/share/info/dir +} |