Magellan Linux

Contents of /trunk/core/fuse/fuse-2.9.1-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 13009 - (show annotations) (download)
Fri Aug 17 07:51:06 2012 UTC (11 years, 9 months ago) by niro
File size: 804 byte(s)
auto added: ver bump to 2.9.1-r1
1 # $Id$
2
3 PNAME="fuse"
4 PVER="2.9.1"
5 PBUILD="r1"
6
7 PCAT="sys-fs"
8
9 DESCRIPTION="Fuse userland utilities."
10 HOMEPAGE="http://fuse.sourceforge.net/"
11
12 DEPEND=">= virtual/kernel"
13
14 SRCFILE="${PNAME}-${PVER}.tar.gz"
15 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
16
17 sminclude mbuild mtools
18
19 SRC_URI=(
20 sourceforge://${PNAME}/${SRCFILE}
21 mirror://${PNAME}/${SRCFILE}
22 )
23
24 # listed on sf.net as fuse-2.X
25 UP2DATE="updatecmd_sourceforge ${PNAME} ${PNAME}-2.X"
26
27 src_compile()
28 {
29 cd ${SRCDIR}
30
31 MOUNT_FUSE_PATH="/usr/sbin" \
32 mconfigure --disable-kernel-module --disable-example || die
33 mmake || die
34 }
35
36 src_install()
37 {
38 cd ${SRCDIR}
39 mmake DESTDIR=${BINDIR} install || die
40
41 # remove initscript
42 mdelete -r /etc/init.d || die
43
44 # udev handles dev nodes
45 mdelete -r /dev || die
46
47 minstalldocs AUTHORS COPYING* FAQ NEWS README* || die
48 }