fuse 2.4.2: fix typo
authorKoen Kooi <koen@openembedded.org>
Thu, 8 Dec 2005 13:01:28 +0000 (13:01 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Thu, 8 Dec 2005 13:01:28 +0000 (13:01 +0000)
fuse-module 2.4.2: add fuse kernel module

packages/fuse/fuse-module_2.4.2.bb [new file with mode: 0644]
packages/fuse/fuse_2.4.2.bb

diff --git a/packages/fuse/fuse-module_2.4.2.bb b/packages/fuse/fuse-module_2.4.2.bb
new file mode 100644 (file)
index 0000000..616b898
--- /dev/null
@@ -0,0 +1,33 @@
+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 = "GPL
+
+
+DEPENDS = "fakeroot-native"
+RRECOMMEND = "fuse"
+
+SRC_URI="${SOURCEFORGE_MIRROR}/fuse/fuse-${PV}.tar.gz"
+S = "${WORKDIR}/fuse-${PV}"
+
+inherit autotools pkgconfig module
+EXTRA_OECONF = "  --with-kernel=${STAGING_KERNEL_DIR}"
+
+do_configure() {
+cd ${S} ; oe_runconf
+}
+
+do_compile(){
+LDFLAGS=""
+cd ${S}/kernel
+oe_runmake
+}
+
+fakeroot do_install() {
+LDFLAGS=""
+cd ${S}/kernel
+oe_runmake install DESTDIR=${D}
+}
+
+FILES_${PN} = "/dev /lib/modules"
index a52578b..5fb274f 100644 (file)
@@ -5,7 +5,7 @@ MAINTAINER = "Koen Kooi <koen@handhelds.org>"
 LICENSE_${PN} = "LGPL
 
 DEPENDS = "fakeroot-native"
-RRECOMMEND_${PN} = "fuse-module"
+RRECOMMENDS_${PN} = "fuse-module"
 
 SRC_URI="${SOURCEFORGE_MIRROR}/fuse/${P}.tar.gz"