mirror of
https://git.yoctoproject.org/poky
synced 2026-07-02 17:13:39 +02:00
This is the next stage of recipe reorganization, in this stage many recipes where moved to a new meta-demoapps layer since this is more appropriate for demo usage then the core. Additional some recipes were moved to meta-extras to indicate they may be depercated at a future time. A number of recipes were modified since dependencies need to be corrected. Signed-off-by: Saul Wold <Saul.Wold@intel.com>
14 lines
445 B
PHP
14 lines
445 B
PHP
DESCRIPTION = "With FUSE it is possible to implement a fully functional filesystem in a userspace program"
|
|
HOMEPAGE = "http://fuse.sf.net"
|
|
LICENSE = "GPL"
|
|
DEPENDS = "virtual/fakeroot-native"
|
|
RRECOMMENDS_fuse = "${@base_contains("MACHINE_FEATURES","kernel26","kernel-module-fuse","fuse-module",d)}"
|
|
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/fuse/fuse-${PV}.tar.gz"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
fakeroot do_install() {
|
|
oe_runmake install DESTDIR=${D}
|
|
}
|