mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
905 B
Bash
25 lines
905 B
Bash
|
# $Id: PKGBUILD 39800 2009-05-21 13:44:17Z jgc $
|
||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=gvfs
|
||
|
pkgver=1.2.3
|
||
|
pkgrel=1
|
||
|
pkgdesc="Userspace virtual filesystem implemented as a pluggable module for gio"
|
||
|
arch=(i686 x86_64)
|
||
|
license=('LGPL')
|
||
|
depends=('libsoup>=2.26.2' 'libcdio>=0.81' 'fuse>=2.7.4' 'bluez>=4.39' 'smbclient>=3.3.4' 'libgphoto2>=2.4.5' 'gnome-keyring>=2.26.1' 'avahi>=0.6.25' 'libarchive>=2.7.0')
|
||
|
makedepends=('pkgconfig' 'intltool')
|
||
|
url="http://www.gnome.org"
|
||
|
options=(!libtool)
|
||
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.2/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('04a7f9c892b962cfedf0637dd2b01196')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
./configure --prefix=/usr --sysconfdir=/etc \
|
||
|
--localstatedir=/var --disable-static \
|
||
|
--libexecdir=/usr/lib/gvfs || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="${pkgdir}" install || return 1
|
||
|
}
|