mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
26 lines
835 B
Bash
26 lines
835 B
Bash
# $Id: PKGBUILD 18972 2008-11-13 03:01:47Z eric $
|
|
# Maintainer: aurelien <aurelien@archlinux.org>
|
|
# Contributor: Suzy Williams <suzanne.williams3@verizon.net>
|
|
|
|
pkgname=xfce4-mailwatch-plugin
|
|
pkgver=1.1.0
|
|
pkgrel=2
|
|
pkgdesc="A mailbox watch/check plugin for the Xfce4 panel"
|
|
arch=(i686 x86_64)
|
|
license=('GPL2')
|
|
url="http://xfce.org/"
|
|
groups=('xfce4-goodies')
|
|
depends=('xfce4-panel' 'gnutls>=2.4.1')
|
|
makedepends=('pkgconfig')
|
|
options=('!libtool')
|
|
install=${pkgname}.install
|
|
source=(http://spuriousinterrupt.org/files/mailwatch/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('f84dce86be1d7f25f169f262aaacee4e')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
|
|
--localstatedir=/var --disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|