Advertisement
Guest User

biloky

a guest
Feb 15th, 2009
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. # $Id: PKGBUILD 20630 2008-12-06 04:01:29Z allan $
  2. # Maintainer: Jan de Groot <jgc@archlinux.org>
  3.  
  4. pkgname=gvfs
  5. pkgver=1.0.3
  6. pkgrel=2.5
  7. pkgdesc="Userspace virtual filesystem implemented as a pluggable module for gio"
  8. arch=(i686 x86_64)
  9. license=('LGPL')
  10. depends=('libsoup>=2.24.2.1' 'libcdio>=0.80-3' 'fuse>=2.7.4' 'bluez>=4.18' 'smbclient>=3.2.4' 'libgphoto2>=2.4.3' 'gnome-keyring>=2.24.1' 'avahi>=0.6.23' 'libarchive>=2.5.5')
  11. makedepends=('pkgconfig' 'intltool')
  12. url="http://www.gnome.org"
  13. install=gvfs.install
  14. options=(!libtool)
  15. source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.0/${pkgname}-${pkgver}.tar.bz2
  16. gvfs-obexftp-updated-apis-2.patch)
  17. md5sums=('a41e8b7d99e390cef8312f7ce5f312a5')
  18.  
  19. build() {
  20. cd "${srcdir}/${pkgname}-${pkgver}"
  21. patch -Np0 -i $startdir/gvfs-obexftp-updated-apis-2.patch || return 1
  22. ./configure --prefix=/usr --sysconfdir=/etc \
  23. --localstatedir=/var --disable-static \
  24. --libexecdir=/usr/lib/gvfs || return 1
  25. make || return 1
  26. make DESTDIR="${pkgdir}" install || return 1
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement