btrfs-progs: initial release.

This commit is contained in:
Tilman Sauerbeck 2010-07-13 22:32:30 +02:00
parent 0c3c76a32e
commit 3f3bc465fe
3 changed files with 36 additions and 0 deletions

18
btrfs-progs/.footprint Normal file
View File

@ -0,0 +1,18 @@
drwxr-xr-x root/root bin/
-rwxr-xr-x root/root bin/btrfs
-rwxr-xr-x root/root bin/btrfs-debug-tree
-rwxr-xr-x root/root bin/btrfs-map-logical
-rwxr-xr-x root/root bin/btrfs-show
-rwxr-xr-x root/root bin/btrfs-vol
-rwxr-xr-x root/root bin/btrfsck
-rwxr-xr-x root/root bin/btrfsctl
-rwxr-xr-x root/root bin/mkfs.btrfs
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/btrfs-image.8.gz
-rw-r--r-- root/root usr/man/man8/btrfs-show.8.gz
-rw-r--r-- root/root usr/man/man8/btrfs.8.gz
-rw-r--r-- root/root usr/man/man8/btrfsck.8.gz
-rw-r--r-- root/root usr/man/man8/btrfsctl.8.gz
-rw-r--r-- root/root usr/man/man8/mkfs.btrfs.8.gz

1
btrfs-progs/.md5sum Normal file
View File

@ -0,0 +1 @@
28b5f1258497899ef5fdc7e788a65f6a btrfs-progs-unstable-075587c.tar.gz

17
btrfs-progs/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: Filesystem utilities for btrfs
# URL: http://btrfs.wiki.kernel.org
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=btrfs-progs
version=075587c
release=1
source=(http://crux.nu/files/distfiles/$name-unstable-$version.tar.gz)
build() {
cd $name-unstable-$version
make
install -d -m 755 $PKG/usr/man/man8
make prefix=/ mandir=/usr/man DESTDIR=$PKG install
}