blob: ba8efc73e8aeca5db1caf1cbf31f59b0650a5f95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: Filesystem utilities for ReiserFS
# URL: http://www.kernel.org/pub/linux/utils/fs/reiserfs/README
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: util-linux-ng
name=reiserfsprogs
version=3.6.21
release=1
source=(http://www.kernel.org/pub/linux/utils/fs/reiserfs/$name-$version.tar.bz2)
build () {
cd $name-$version
./configure --prefix=/ --mandir=/usr/man
make
make DESTDIR=$PKG install
ln -s reiserfsck $PKG/sbin/fsck.reiserfs
ln -s mkreiserfs $PKG/sbin/mkfs.reiserfs
}
|