# Description: Tools for IBM's journaled file system
# URL:         http://jfs.sourceforge.net/
# Maintainer:  CRUX System Team, core-ports at crux dot nu
# Depends on:  util-linux

name=jfsutils
version=1.1.15
release=2
source=(http://ftp2.osuosl.org/pub/blfs/7.5/j/jfsutils-1.1.15.tar.gz inttypes.patch)

build() {
    cd $name-$version
    patch -p1 -i $SRC/inttypes.patch
    ./configure --prefix=/ --mandir=/usr/man
    make
    make DESTDIR=$PKG install
    ln -sf jfs_mkfs $PKG/sbin/mkfs.jfs
    ln -sf jfs_fsck $PKG/sbin/fsck.jfs
    ln -sf jfs_mkfs.8 $PKG/usr/man/man8/mkfs.jfs.8
    ln -sf jfs_fsck.8 $PKG/usr/man/man8/fsck.jfs.8
}
