mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
26 lines
859 B
Bash
26 lines
859 B
Bash
# $Id: PKGBUILD 49198 2009-08-04 19:36:44Z andyrtr $
|
|
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
|
# Contributor: Suzy Williams <suzanne.williams3@verizon.net>
|
|
|
|
pkgname=xfce4-weather-plugin
|
|
pkgver=0.7.3
|
|
pkgrel=1
|
|
pkgdesc="A weather plugin for the Xfce4 panel"
|
|
arch=(i686 x86_64)
|
|
license=('GPL2')
|
|
url="http://xfce-goodies.berlios.de/"
|
|
groups=('xfce4-goodies')
|
|
depends=('xfce4-panel' 'libxml2' 'hicolor-icon-theme')
|
|
makedepends=('pkgconfig')
|
|
options=('!libtool')
|
|
install=${pkgname}.install
|
|
source=( http://archive.xfce.org/src/panel-plugins/${pkgname}/0.7/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('b3436929dd94cdd8acc744c474cca5c4')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
|
|
--localstatedir=/var --disable-static
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|