blob: 27abd3a898819893b64aedf9f4bf6a6b04816225 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
HOMEPAGE = "http://fuse.sf.net"
DESCRIPTION = "With FUSE it is possible to implement a fully functional filesystem in a userspace program"
MAINTAINER = "Koen Kooi <koen@handhelds.org>"
LICENSE_${PN} = "LGPL"
DEPENDS = "fakeroot-native"
RRECOMMENDS_${PN} = "fuse-module"
SRC_URI="${SOURCEFORGE_MIRROR}/fuse/${P}.tar.gz"
inherit autotools pkgconfig
EXTRA_OECONF = " --disable-kernel-module"
fakeroot do_install() {
oe_runmake install DESTDIR=${D}
}
fakeroot do_stage() {
autotools_stage_all
}
|