Date: Thursday, January 16, 2014 @ 16:12:57 Author: flexiondotorg Revision: 104173
Added libmateweather Added: libmateweather/ libmateweather/repos/ libmateweather/trunk/ libmateweather/trunk/PKGBUILD libmateweather/trunk/libmateweather.install ------------------------+ PKGBUILD | 35 +++++++++++++++++++++++++++++++++++ libmateweather.install | 12 ++++++++++++ 2 files changed, 47 insertions(+) Added: libmateweather/trunk/PKGBUILD =================================================================== --- libmateweather/trunk/PKGBUILD (rev 0) +++ libmateweather/trunk/PKGBUILD 2014-01-16 15:12:57 UTC (rev 104173) @@ -0,0 +1,35 @@ +# $Id$ +# Maintainer : Martin Wimpress <[email protected]> +# Contributor: Giovanni "Talorno" Ricciardi <[email protected]> +# Contributor: Xpander <[email protected]> + +pkgname=libmateweather +pkgver=1.6.2 +pkgrel=5 +pkgdesc="Provides access to weather information from the net" +url="http://mate-desktop.org" +arch=('i686' 'x86_64') +license=('LGPL') +depends=('dconf' 'gtk2' 'libsoup' 'pygtk' 'python2-gobject2') +makedepends=('mate-common' 'perl-xml-parser') +options=('!emptydirs') +source=("http://pub.mate-desktop.org/releases/1.6/${pkgname}-${pkgver}.tar.xz") +sha1sums=('56f30e35345864954a37228ad8103350f4bc3651') +install=${pkgname}.install + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + PYTHON=/usr/bin/python2 ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-static \ + --enable-python \ + --enable-locations-compression + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} Property changes on: libmateweather/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: libmateweather/trunk/libmateweather.install =================================================================== --- libmateweather/trunk/libmateweather.install (rev 0) +++ libmateweather/trunk/libmateweather.install 2014-01-16 15:12:57 UTC (rev 104173) @@ -0,0 +1,12 @@ +post_install() { + glib-compile-schemas /usr/share/glib-2.0/schemas/ + gtk-update-icon-cache -q -t -f /usr/share/icons/mate +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +}
