blob: e87e8545b63864f9ed7e9738f3ca44f71a1d8d27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Librairie pour le système de fichiers virtuel de gnome
# URL: http://library.gnome.org/devel/gnome-vfs-2.0/
# Maintainer: NuTyX GNOME team
# Packager: b at juglas dot name
# Depends on: gconf, gnome-mime-data, samba3
# Run on: gconf,gnome-mime-data,samba3
name=gnome-vfs
version=2.24.4
release=1
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/gnome-vfs-2.0 \
--disable-gtk-doc
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/gtk-doc
}
|