diff options
Diffstat (limited to 'extra/libsocialweb/PKGBUILD')
-rw-r--r-- | extra/libsocialweb/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/extra/libsocialweb/PKGBUILD b/extra/libsocialweb/PKGBUILD new file mode 100644 index 000000000..b0a66654b --- /dev/null +++ b/extra/libsocialweb/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 120409 2011-04-23 20:56:42Z ibiru $ +# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> +pkgname=libsocialweb +pkgver=0.25.16 +pkgrel=1 +pkgdesc="A personal social data server" +arch=('i686' 'x86_64') +url="http://www.gtk.org/" +license=('GPL2') +depends=('glib2' 'gconf' 'libsoup-gnome' 'rest' 'dbus-glib' 'libgnome-keyring' + 'json-glib') +makedepends=('intltool' 'gtk-doc') +options=('!libtool') +source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.bz2) +sha256sums=('2726c29c5e334294df81d2d57c750ed86866c64a6b0e14eae7f8c7cc7b033064') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib/libsocialweb \ + --enable-all-services=yes \ + --with-online=always + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="${pkgdir}" install +} + +# vim:set ts=2 sw=2 et: |