Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 12067 - (show annotations) (download)
Fri May 4 12:33:47 2012 UTC (12 years ago) by niro
File size: 720 byte(s)
auto added: ver bump to 2.9.0-r1
1 # $Id$
2
3 PNAME="fuse"
4 PVER="2.9.0"
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
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 }