diff options
author | root <root@rshg054.dnsready.net> | 2012-10-04 01:23:34 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-10-04 01:23:34 -0700 |
commit | c3ff6b4da8966c22dcbf0f5d8a957b875242789f (patch) | |
tree | 73064dc985b6d59695639dfb6d4ae4ba99395cc5 /gnome-unstable/gnome-user-share/PKGBUILD | |
parent | 1350233b6dc1924ba29a42462447995f26dae0dc (diff) |
Thu Oct 4 01:23:34 PDT 2012
Diffstat (limited to 'gnome-unstable/gnome-user-share/PKGBUILD')
-rw-r--r-- | gnome-unstable/gnome-user-share/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnome-unstable/gnome-user-share/PKGBUILD b/gnome-unstable/gnome-user-share/PKGBUILD new file mode 100644 index 000000000..db00ff47f --- /dev/null +++ b/gnome-unstable/gnome-user-share/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 167785 2012-10-03 14:41:05Z heftig $ +# Maintainer: Roman Kyrylych <roman@archlinux.org> + +pkgname=gnome-user-share +pkgver=3.0.4 +pkgrel=1 +pkgdesc="Easy to use user-level file sharing for GNOME." +arch=('i686' 'x86_64') +url="http://ftp.gnome.org/pub/GNOME/sources/gnome-user-share/" +license=('GPL') +depends=('mod_dnssd' 'dconf' 'gtk3' 'hicolor-icon-theme' 'libnotify' 'gnome-bluetooth' 'libcanberra') +makedepends=('intltool' 'nautilus' 'itstool' 'docbook-xsl') +options=('!emptydirs' '!libtool') +install=gnome-user-share.install +source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz) +sha256sums=('e1c8ca73163bf77ce7ca1b92db94cd9c4680a24b940d620996c9331ab79edeb8') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc \ + --libexecdir=/usr/lib/gnome-user-share \ + --localstatedir=/var + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |