2012-07-04 19:31:21 +02:00
################################################################################
# This file is part of OpenELEC - http://www.openelec.tv
2016-01-02 17:29:56 +01:00
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
2012-07-04 19:31:21 +02:00
#
2013-12-21 21:51:48 +01:00
# OpenELEC is free software: you can redistribute it and/or modify
2012-07-04 19:31:21 +02:00
# it under the terms of the GNU General Public License as published by
2013-12-21 21:51:48 +01:00
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
2012-07-04 19:31:21 +02:00
#
2013-12-21 21:51:48 +01:00
# OpenELEC is distributed in the hope that it will be useful,
2012-07-04 19:31:21 +02:00
# but WITHOUT ANY WARRANTY; without even the implied warranty of
2013-12-21 21:51:48 +01:00
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2012-07-04 19:31:21 +02:00
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
2013-12-21 21:51:48 +01:00
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
2012-07-04 19:31:21 +02:00
################################################################################
2013-07-29 08:31:15 +02:00
PKG_NAME = "fuse"
2016-07-25 10:04:58 -07:00
PKG_VERSION = "2.9.7"
2017-07-17 20:49:22 +02:00
PKG_SHA256 = "832432d1ad4f833c20e13b57cf40ce5277a9d33e483205fc63c78111b3358874"
2013-07-29 08:31:15 +02:00
PKG_ARCH = "any"
PKG_LICENSE = "GPL"
2015-12-23 20:44:26 +01:00
PKG_SITE = "https://github.com/libfuse/libfuse/"
2016-04-27 17:54:04 +02:00
PKG_URL = " https://github.com/libfuse/libfuse/releases/download/ $PKG_NAME - $PKG_VERSION / $PKG_NAME - $PKG_VERSION .tar.gz "
2014-01-30 14:31:09 +01:00
PKG_DEPENDS_TARGET = "toolchain"
2013-07-29 08:31:15 +02:00
PKG_SECTION = "system"
PKG_SHORTDESC = "fuse: A simple user-space filesystem interface for Linux"
PKG_LONGDESC = "FUSE provides a simple interface for userspace programs to export a virtual filesystem to the Linux kernel. FUSE also aims to provide a secure method for non privileged users to create and mount their own filesystem implementations."
2012-07-04 19:31:21 +02:00
2016-12-04 13:23:45 -08:00
PKG_CONFIGURE_OPTS_TARGET = " MOUNT_FUSE_PATH=/usr/sbin \
--enable-lib \
2013-07-29 08:31:15 +02:00
--enable-util \
--disable-example \
--enable-mtab \
--disable-rpath \
--with-gnu-ld"
2014-04-23 12:38:37 +02:00
p r e _ c o n f i g u r e _ t a r g e t ( ) {
# fuse fails to build with GOLD linker on gcc-4.9
strip_gold
}
2013-07-29 08:31:15 +02:00
p o s t _ m a k e i n s t a l l _ t a r g e t ( ) {
rm -rf $INSTALL /etc/init.d
rm -rf $INSTALL /etc/udev
}