Magellan Linux

Annotation of /branches/R11-unstable/core/fuse/fuse-2.9.4-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 24962 - (hide annotations) (download)
Tue Nov 25 02:43:44 2014 UTC (9 years, 5 months ago) by niro
File size: 829 byte(s)
-release branches/R11-unstable
1 niro 24857 # $Id$
2    
3     PNAME="fuse"
4     PVER="2.9.4"
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     UP2TARBALL="${PNAME}"
26     UP2DATE="updatecmd_sourceforge ${PNAME} ${PNAME}-2.X gz"
27    
28     src_compile()
29     {
30     cd ${SRCDIR}
31    
32     MOUNT_FUSE_PATH="/usr/sbin" \
33     mconfigure --disable-kernel-module --disable-example || die
34     mmake || die
35     }
36    
37     src_install()
38     {
39     cd ${SRCDIR}
40     mmake DESTDIR=${BINDIR} install || die
41    
42     # remove initscript
43     mdelete -r /etc/init.d || die
44    
45     # udev handles dev nodes
46     mdelete -r /dev || die
47    
48     minstalldocs AUTHORS COPYING* FAQ NEWS README* || die
49     }