summaryrefslogtreecommitdiff
path: root/testing/xfce4-weather-plugin/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/xfce4-weather-plugin/PKGBUILD')
-rw-r--r--testing/xfce4-weather-plugin/PKGBUILD44
1 files changed, 0 insertions, 44 deletions
diff --git a/testing/xfce4-weather-plugin/PKGBUILD b/testing/xfce4-weather-plugin/PKGBUILD
deleted file mode 100644
index cd383bef4..000000000
--- a/testing/xfce4-weather-plugin/PKGBUILD
+++ /dev/null
@@ -1,44 +0,0 @@
-# $Id: PKGBUILD 157715 2012-04-29 02:55:36Z foutrelis $
-# Maintainer: Evangelos Foutras <evangelos@foutrelis.com>
-# Contributor: Suzy Williams <suzanne.williams3@verizon.net>
-
-pkgname=xfce4-weather-plugin
-pkgver=0.7.4
-pkgrel=3
-pkgdesc="A weather plugin for the Xfce4 panel"
-arch=('i686' 'x86_64')
-url="http://goodies.xfce.org/projects/panel-plugins/xfce4-weather-plugin"
-license=('GPL2')
-groups=('xfce4-goodies')
-depends=('xfce4-panel' 'libxfcegui4' 'libxml2' 'hicolor-icon-theme')
-makedepends=('intltool')
-options=('!libtool')
-install=$pkgname.install
-source=(http://archive.xfce.org/src/panel-plugins/$pkgname/0.7/$pkgname-$pkgver.tar.bz2)
-sha256sums=('3f76207b8a845d15bfec6825bd5300aedd086c455259c4dd8670a89a3c8ab382')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- # Switch to a working license key
- # https://bugs.archlinux.org/task/26815
- sed -i \
- -e 's/^#define PARTNER_ID.*/#define PARTNER_ID "1003666583"/' \
- -e 's/^#define LICENSE_KEY.*/#define LICENSE_KEY "4128909340a9b2fc"/' \
- panel-plugin/weather.h
-
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --libexecdir=/usr/lib \
- --localstatedir=/var \
- --disable-static \
- --disable-debug
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et: