diff options
Diffstat (limited to 'meta-filesystems/recipes-support/fuse/fuse_2.9.3.bb')
| -rw-r--r-- | meta-filesystems/recipes-support/fuse/fuse_2.9.3.bb | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/meta-filesystems/recipes-support/fuse/fuse_2.9.3.bb b/meta-filesystems/recipes-support/fuse/fuse_2.9.3.bb new file mode 100644 index 0000000000..358b58eb54 --- /dev/null +++ b/meta-filesystems/recipes-support/fuse/fuse_2.9.3.bb | |||
| @@ -0,0 +1,43 @@ | |||
| 1 | SUMMARY = "With FUSE it is possible to implement a fully functional filesystem in a userspace program" | ||
| 2 | DESCRIPTION = "FUSE (Filesystem in Userspace) is a simple interface for userspace \ | ||
| 3 | programs to export a virtual filesystem to the Linux kernel. FUSE \ | ||
| 4 | also aims to provide a secure method for non privileged users to \ | ||
| 5 | create and mount their own filesystem implementations. \ | ||
| 6 | " | ||
| 7 | HOMEPAGE = "http://fuse.sf.net" | ||
| 8 | SECTION = "libs" | ||
| 9 | LICENSE = "GPLv2 & LGPLv2" | ||
| 10 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | ||
| 11 | file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c" | ||
| 12 | |||
| 13 | SRC_URI = "${SOURCEFORGE_MIRROR}/fuse/fuse-${PV}.tar.gz \ | ||
| 14 | file://gold-unversioned-symbol.patch \ | ||
| 15 | file://aarch64.patch \ | ||
| 16 | " | ||
| 17 | SRC_URI[md5sum] = "33cae22ca50311446400daf8a6255c6a" | ||
| 18 | SRC_URI[sha256sum] = "0beb83eaf2c5e50730fc553406ef124d77bc02c64854631bdfc86bfd6437391c" | ||
| 19 | |||
| 20 | inherit autotools pkgconfig | ||
| 21 | |||
| 22 | EXTRA_OECONF = "--disable-kernel-module" | ||
| 23 | |||
| 24 | PACKAGES =+ "fuse-utils-dbg fuse-utils libulockmgr libulockmgr-dev libulockmgr-dbg" | ||
| 25 | |||
| 26 | RRECOMMENDS_${PN} = "kernel-module-fuse" | ||
| 27 | |||
| 28 | FILES_${PN} += "${libdir}/libfuse.so.*" | ||
| 29 | FILES_${PN}-dev += "${libdir}/libfuse*.la" | ||
| 30 | |||
| 31 | FILES_libulockmgr = "${libdir}/libulockmgr.so.*" | ||
| 32 | FILES_libulockmgr-dev += "${libdir}/libulock*.la" | ||
| 33 | FILES_libulockmgr-dbg += "${libdir}/.debug/libulock*" | ||
| 34 | |||
| 35 | # Forbid auto-renaming to libfuse-utils | ||
| 36 | FILES_fuse-utils = "${bindir} ${base_sbindir}" | ||
| 37 | FILES_fuse-utils-dbg = "${bindir}/.debug ${base_sbindir}/.debug" | ||
| 38 | DEBIAN_NOAUTONAME_fuse-utils = "1" | ||
| 39 | DEBIAN_NOAUTONAME_fuse-utils-dbg = "1" | ||
| 40 | |||
| 41 | do_install_append() { | ||
| 42 | rm -rf ${D}${base_prefix}/dev | ||
| 43 | } | ||
