diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/libgdata |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/libgdata')
-rw-r--r-- | extra/libgdata/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/extra/libgdata/PKGBUILD b/extra/libgdata/PKGBUILD new file mode 100644 index 000000000..324aa5c0c --- /dev/null +++ b/extra/libgdata/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 92480 2010-09-30 13:16:47Z jgc $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=libgdata +pkgver=0.6.5 +pkgrel=1 +pkgdesc="GLib-based library for accessing online service APIs using the GData protocol" +arch=('i686' 'x86_64') +license=('GPL') +depends=('libsoup-gnome>=2.32.0') +makedepends=('pkgconfig' 'intltool' 'gobject-introspection') +url="http://www.gnome.org" +options=('!libtool') +source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.6/${pkgname}-${pkgver}.tar.bz2) +sha256sums=('dcb82f7162d69549512444376da2cdea65650ee4dae4d00eed7fbbd3387ddf2c') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --disable-static + make + make DESTDIR="${pkgdir}" install +} |