summaryrefslogtreecommitdiff
path: root/extra/gnome-weather/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/gnome-weather/PKGBUILD')
-rw-r--r--extra/gnome-weather/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/extra/gnome-weather/PKGBUILD b/extra/gnome-weather/PKGBUILD
new file mode 100644
index 000000000..ad522aab2
--- /dev/null
+++ b/extra/gnome-weather/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 183410 2013-04-21 22:10:43Z heftig $
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
+
+pkgname=gnome-weather
+pkgver=3.8.1
+pkgrel=1
+pkgdesc="Access current weather conditions and forecasts"
+arch=(i686 x86_64)
+url="https://www.gnome.org/"
+license=(GPL)
+depends=(gtk3 gjs libgweather)
+makedepends=(intltool gobject-introspection)
+options=(!libtool)
+groups=(gnome-extra)
+install=gnome-weather.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver::3}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('9dbbf0aa50a940894a9ebf63001163a8fa89c3aa8febbddcd3c6c6eefbc00f3d')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+ make
+}
+
+check() {
+ cd $pkgname-$pkgver
+ make check
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}