You are not logged in.
Pages: 1
I did a PKGBUILD for gnubiff today. It's mail notification program for the gnome panel and has some neat features, such as
-Multiple mailbox support
-Mail header & content display
-and some more
It's actually my first published package, so don't expect too much...
pkgname=gnubiff
pkgver=2.0.2
pkgrel=1
pkgdesc="Mail notification for the Gnome panel"
url="http://gnubiff.sourceforge.net/"
depends=('gtk2' 'gnome-panel')
source=(http://dl.sourceforge.net/sourceforge/gnubiff/gnubiff-$pkgver.tar.gz)
md5sums=('38ee04ed9e41454e3e1b40677cdb70d5')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=`pkg-config libpanelapplet-2.0 --variable=prefix` --with-password
make || return 1
make DESTDIR=$startdir/pkg install
}
Offline
sounds good - thanks
but also needs to depend on perlxml
Offline
Pages: 1