diff options
author | Johannes Winkelmann <jw@smts.ch> | 2006-02-23 15:26:10 +0000 |
---|---|---|
committer | Johannes Winkelmann <jw@smts.ch> | 2006-02-23 15:26:10 +0000 |
commit | bdea7e6c6a535e57a07d376a3139d0788efaaa41 (patch) | |
tree | 1a7334c99fa39b1ad1a7a35c113b18cb0d92413c /fuse | |
download | opt-bdea7e6c6a535e57a07d376a3139d0788efaaa41.tar.gz opt-bdea7e6c6a535e57a07d376a3139d0788efaaa41.tar.xz |
create branch for 2.2
Diffstat (limited to 'fuse')
-rw-r--r-- | fuse/.footprint | 33 | ||||
-rw-r--r-- | fuse/.md5sum | 1 | ||||
-rw-r--r-- | fuse/Pkgfile | 19 |
3 files changed, 53 insertions, 0 deletions
diff --git a/fuse/.footprint b/fuse/.footprint new file mode 100644 index 000000000..e276c1d88 --- /dev/null +++ b/fuse/.footprint @@ -0,0 +1,33 @@ +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/40-fuse.rules +drwxr-xr-x root/root lib/ +drwxr-xr-x root/root lib/modules/ +drwxr-xr-x root/root lib/modules/<kernel-version>/ +drwxr-xr-x root/root lib/modules/<kernel-version>/kernel/ +drwxr-xr-x root/root lib/modules/<kernel-version>/kernel/fs/ +drwxr-xr-x root/root lib/modules/<kernel-version>/kernel/fs/fuse/ +-rw-r--r-- root/root lib/modules/<kernel-version>/kernel/fs/fuse/fuse.ko +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 +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_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 +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.5.2 +lrwxrwxrwx root/root usr/lib/libfuse.so.2 -> libfuse.so.2.5.2 +-rwxr-xr-x root/root usr/lib/libfuse.so.2.5.2 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/fuse.pc diff --git a/fuse/.md5sum b/fuse/.md5sum new file mode 100644 index 000000000..6602dfc2f --- /dev/null +++ b/fuse/.md5sum @@ -0,0 +1 @@ +ea565debe6c7486963bef05c45c50361 fuse-2.5.2.tar.gz diff --git a/fuse/Pkgfile b/fuse/Pkgfile new file mode 100644 index 000000000..210986762 --- /dev/null +++ b/fuse/Pkgfile @@ -0,0 +1,19 @@ +# Description: Interface for userspace filesystems +# URL: http://sourceforge.net/projects/fuse/ +# Maintainer: Jukka Heino, jukka at karsikkopuu dot net +# Packager: Jukka Heino, jukka at karsikkopuu dot net +# Depends on: + +name=fuse +version=2.5.2 +release=1 +source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz) + +build() { + cd $name-$version + sed -i "s/^CFLAGS=\"-Wall -W -g -O2\"$/CFLAGS=\"-Wall -W -g $CFLAGS\"/" configure + ./configure --prefix=/usr + make + make DESTDIR=$PKG install + rm -rf $PKG/dev +} |