core/jfsutils/Pkgfile

22 lines
642 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# 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
2006-02-23 16:26:10 +01:00
name=jfsutils
2011-03-06 10:16:41 +01:00
version=1.1.15
2014-02-16 11:17:32 +01:00
release=2
source=(http://jfs.sourceforge.net/project/pub/$name-$version.tar.gz inttypes.patch)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
2014-02-16 11:17:32 +01:00
patch -p1 -i $SRC/inttypes.patch
2006-02-23 16:26:10 +01:00
./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
}