blob: 718f47772ab15c3179aa92c5c1fd5efd6545c3f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: Programs for mounting/unmounting/ejecting storage devices
# Maintainer: Matt Housh, jaeger at morpheus dot net
# Depends on: hal, libgnomeui, nautilus
# Group: gnome
name=gnome-mount
version=0.8
release=1
source=(http://hal.freedesktop.org/releases/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/man \
--disable-schemas-install
make
make DESTDIR=$PKG install
}
|