blob: 74dd9947202907a54d5e21f6101e3e18b52714ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
DESCRIPTION = "With FUSE it is possible to implement a fully functional filesystem in a userspace program"
HOMEPAGE = "http://fuse.sf.net"
LICENSE = "LGPL"
PR = "r0"
DEPENDS = "fakeroot-native"
RRECOMMENDS_${PN} = "fuse-module kernel-module-fuse"
SRC_URI = "${SOURCEFORGE_MIRROR}/fuse/${P}.tar.gz \
file://not-run-updaterc.d-on-host.patch;patch=1"
inherit autotools pkgconfig
EXTRA_OECONF = " --disable-kernel-module"
fakeroot do_install() {
oe_runmake install DESTDIR=${D}
}
#package utils in a sperate package and stop debian.bbclass renaming it to libfuse-utils, we want it to be fuse-utils
PACKAGES =+ "lib${PN} libulockmgr"
FILES_${PN}-dev += "${libdir}/*.la"
FILES_lib${PN} = "${libdir}/libfuse*.so.*"
FILES_libulockmgr = "${libdir}/libulockmgr.so.*"
fakeroot do_stage() {
autotools_stage_all
}
|