blob: d8f9315685ab0335bc952260d1a07ee6db5d7877 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: GNOME shell and file manager
# URL: http://www.gnome.org/projects/nautilus/
# Maintainer: Matt Housh, jaeger at morpheus dot net
# Depends on: esound, librsvg, libexif, libunique, startup-notification, gnome-desktop
# Group: gnome/desktop
name=nautilus
version=2.28.0
release=1
gnomever=2.28.0
source=(http://download.gnome.org/desktop/${gnomever%.*}/$gnomever/sources/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=$GNOME_PREFIX \
--sysconfdir=/etc
make
make DESTDIR=$PKG install
install -v -m755 -d $GNOME_PREFIX/share/doc/nautilus-2.26.3
install -v -m644 docs/*.{txt,dia,pdf,sxw,faq,html} $GNOME_PREFIX/share/doc/nautilus-2.26.3
}
|