cramfs-tools: initial import

This commit is contained in:
Rene Lengwinat 2007-04-29 23:17:41 +02:00
parent 9c09fdd740
commit 55aa9f79b4
3 changed files with 22 additions and 0 deletions

4
cramfs-tools/.footprint Normal file
View File

@ -0,0 +1,4 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/cramfsck
-rwxr-xr-x root/root usr/sbin/mkcramfs

1
cramfs-tools/.md5sum Normal file
View File

@ -0,0 +1 @@
d3912b9f7bf745fbfea68f6a9b9de30f cramfs-1.1.tar.gz

17
cramfs-tools/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: Cramfs tools
# URL: http://sourceforge.net/projects/cramfs
# Maintainer: Rene Lengwinat, rugek at dirtyhack dot net
# Depends on:
name=cramfs-tools
version=1.1
release=1
source=(http://optusnet.dl.sourceforge.net/sourceforge/cramfs/cramfs-$version.tar.gz)
build() {
cd cramfs-$version
make
mkdir -p $PKG/usr/sbin
install -c -m 755 cramfsck $PKG/usr/sbin
install -c -m 755 mkcramfs $PKG/usr/sbin
}