Magellan Linux

Annotation of /branches/magellan-next/core/fuse/fuse-2.8.5-r3.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8861 - (hide annotations) (download)
Wed Aug 3 23:06:33 2011 UTC (12 years, 10 months ago) by niro
File size: 726 byte(s)
-removed included initscript
1 niro 8861 # $Id$
2    
3     PNAME="fuse"
4     PVER="2.8.5"
5     PBUILD="r3"
6    
7     PCATEGORIE="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
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     mconfigure --disable-kernel-module --disable-example || die
32     mmake || die
33     }
34    
35     src_install()
36     {
37     cd ${SRCDIR}
38     mmake DESTDIR=${BINDIR} install || die
39    
40     # remove initscript
41     rm -rf ${BINDIR}/etc/init.d || die
42    
43     minstalldocs AUTHORS COPYING* FAQ NEWS README* || die
44     }