blob: 812e0b5582bc1950c7da25e0515976a47564b841 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
description="Filesystem utilities for ReiserFS."
packager="CRUX System Team <core-ports AT crux DOT nu>"
maintainer="Lukc <lukc AT upyum DOT com>"
url="http://www.kernel.org/pub/linux/utils/fs/reiserfs/README"
depends=(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 \
${CHOST:+--build=${CHOST}} \
${CTARGET:+--host=${CTARGET}} \
--prefix=/ \
--mandir=$mandir;
make;
make DESTDIR=$PKG install;
ln -s reiserfsck $PKG/sbin/fsck.reiserfs;
ln -s mkreiserfs $PKG/sbin/mkfs.reiserfs
}
|