summaryrefslogtreecommitdiffstats
path: root/base/fuse
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-01-26 22:28:04 +0100
committertnut <thierryn1 at hispeed dot ch>2010-01-26 22:28:04 +0100
commit437f8a34ac25b294e6e915894c206a65809a2814 (patch)
tree9a5708bbdadd85b964d57e27bf6c5cdad09215c0 /base/fuse
parent4ae0ce5de4ae2e6612595bd2e2f94418c13f6c54 (diff)
downloadnutyx-pakxe-437f8a34ac25b294e6e915894c206a65809a2814.tar.gz
nutyx-pakxe-437f8a34ac25b294e6e915894c206a65809a2814.tar.bz2
nutyx-pakxe-437f8a34ac25b294e6e915894c206a65809a2814.tar.xz
nutyx-pakxe-437f8a34ac25b294e6e915894c206a65809a2814.zip
fuse, déplacé dans base
Diffstat (limited to 'base/fuse')
-rw-r--r--base/fuse/.footprint34
-rw-r--r--base/fuse/.md5sum1
-rw-r--r--base/fuse/Pkgfile19
3 files changed, 54 insertions, 0 deletions
diff --git a/base/fuse/.footprint b/base/fuse/.footprint
new file mode 100644
index 000000000..82c4163c5
--- /dev/null
+++ b/base/fuse/.footprint
@@ -0,0 +1,34 @@
+drwxr-xr-x root/root etc/
+drwxr-xr-x root/root etc/udev/
+drwxr-xr-x root/root etc/udev/rules.d/
+-rw-r--r-- root/root etc/udev/rules.d/99-fuse.rules
+drwxr-xr-x root/root sbin/
+-rwxr-xr-x root/root sbin/mount.fuse
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwsr-xr-x root/root usr/bin/fusermount
+-rwxr-xr-x root/root usr/bin/ulockmgr_server
+drwxr-xr-x root/root usr/include/
+-rw-r--r-- root/root usr/include/fuse.h
+drwxr-xr-x root/root usr/include/fuse/
+-rw-r--r-- root/root usr/include/fuse/fuse.h
+-rw-r--r-- root/root usr/include/fuse/fuse_common.h
+-rw-r--r-- root/root usr/include/fuse/fuse_common_compat.h
+-rw-r--r-- root/root usr/include/fuse/fuse_compat.h
+-rw-r--r-- root/root usr/include/fuse/fuse_lowlevel.h
+-rw-r--r-- root/root usr/include/fuse/fuse_lowlevel_compat.h
+-rw-r--r-- root/root usr/include/fuse/fuse_opt.h
+-rw-r--r-- root/root usr/include/ulockmgr.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libfuse.a
+-rwxr-xr-x root/root usr/lib/libfuse.la
+lrwxrwxrwx root/root usr/lib/libfuse.so -> libfuse.so.2.7.4
+lrwxrwxrwx root/root usr/lib/libfuse.so.2 -> libfuse.so.2.7.4
+-rwxr-xr-x root/root usr/lib/libfuse.so.2.7.4
+-rw-r--r-- root/root usr/lib/libulockmgr.a
+-rwxr-xr-x root/root usr/lib/libulockmgr.la
+lrwxrwxrwx root/root usr/lib/libulockmgr.so -> libulockmgr.so.1.0.1
+lrwxrwxrwx root/root usr/lib/libulockmgr.so.1 -> libulockmgr.so.1.0.1
+-rwxr-xr-x root/root usr/lib/libulockmgr.so.1.0.1
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/fuse.pc
diff --git a/base/fuse/.md5sum b/base/fuse/.md5sum
new file mode 100644
index 000000000..ca76f42db
--- /dev/null
+++ b/base/fuse/.md5sum
@@ -0,0 +1 @@
+4879f06570d2225667534c37fea04213 fuse-2.7.4.tar.gz
diff --git a/base/fuse/Pkgfile b/base/fuse/Pkgfile
new file mode 100644
index 000000000..777ff209e
--- /dev/null
+++ b/base/fuse/Pkgfile
@@ -0,0 +1,19 @@
+# Description: Interface espace utilisateur pour système de fichiers
+# URL: http://fuse.sourceforge.net/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on:
+
+name=fuse
+version=2.7.4
+release=1
+source=(http://downloads.sourceforge.net/$name/$name-$version.tar.gz)
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/usr \
+ --disable-kernel-module
+ make
+ make DESTDIR=$PKG install
+ rm -r $PKG/{dev,etc/init.d}
+}