linux-fusion: initial release

This commit is contained in:
Tilman Sauerbeck 2007-03-12 17:01:55 +01:00
parent f2602293b5
commit 9e91cb146d
4 changed files with 39 additions and 0 deletions

15
linux-fusion/.footprint Normal file
View File

@ -0,0 +1,15 @@
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-fusion.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>/drivers/
drwxr-xr-x root/root lib/modules/<kernel-version>/drivers/char/
drwxr-xr-x root/root lib/modules/<kernel-version>/drivers/char/fusion/
-rw-r--r-- root/root lib/modules/<kernel-version>/drivers/char/fusion/fusion.ko
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/linux/
-rw-r--r-- root/root usr/include/linux/fusion.h

2
linux-fusion/.md5sum Normal file
View File

@ -0,0 +1,2 @@
807945b2defe80e43301e4dac97c2bcc 40-fusion.rules
b8b18ad1973de3dafa0bc3478e5e76b7 linux-fusion-3.2.3.tar.gz

View File

@ -0,0 +1 @@
KERNEL=="fusion[0-9]*", NAME="fusion/%n", GROUP="video", MODE="0660"

21
linux-fusion/Pkgfile Normal file
View File

@ -0,0 +1,21 @@
# Description: A high level IPC implementation
# URL: http://www.directfb.org
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
name=linux-fusion
version=3.2.3
release=1
source=(http://www.directfb.org/downloads/Core/$name-$version.tar.gz \
40-fusion.rules)
build() {
cd $name-$version
sed -i -e '/depmod/d' Makefile
make
make DESTDIR=$PKG install
install -d $PKG/etc/udev/rules.d
install -m 644 $SRC/40-fusion.rules $PKG/etc/udev/rules.d
}