summaryrefslogtreecommitdiff
path: root/package/fuse/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'package/fuse/Makefile')
-rw-r--r--package/fuse/Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/package/fuse/Makefile b/package/fuse/Makefile
new file mode 100644
index 000000000..2a8c89e2f
--- /dev/null
+++ b/package/fuse/Makefile
@@ -0,0 +1,36 @@
+# $Id$
+#-
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include ${TOPDIR}/rules.mk
+
+PKG_NAME:= fuse
+PKG_VERSION:= 2.7.4
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 4879f06570d2225667534c37fea04213
+MASTER_SITES:= ${MASTER_SITE_SOURCEFORGE:=${PKG_NAME}/}
+
+include ${TOPDIR}/mk/package.mk
+
+$(eval $(call PKG_template,FUSE_UTILS,fuse-utils,${PKG_VERSION}-${PKG_RELEASE},${ARCH}))
+
+CONFIGURE_STYLE= gnu
+CONFIGURE_ARGS+= --enable-lib \
+ --disable-shared \
+ --enable-static \
+ --enable-util \
+ --enable-example \
+ --disable-auto-modprobe \
+ --disable-mtab \
+ --disable-kernel-module
+BUILD_STYLE= auto
+INSTALL_STYLE= auto confprog
+XAKE_FLAGS+= ARCH='${KERNEL_ARCH}' \
+ CROSS_COMPILE='${TARGET_CROSS}'
+
+post-install:
+ ${INSTALL_DIR} ${IDIR_FUSE_UTILS}/usr/bin
+ ${CP} ${WRKINST}/usr/bin/fusermount ${IDIR_FUSE_UTILS}/usr/bin
+
+include ${TOPDIR}/mk/pkg-bottom.mk