opt/jfsutils/Pkgfile

28 lines
707 B
Plaintext
Raw Normal View History

# Description: Tools for IBM's journaled file system
2023-05-28 10:24:09 +02:00
# URL: https://jfs.sourceforge.net/
2021-12-14 10:00:24 +01:00
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: util-linux
name=jfsutils
version=1.1.15
2020-05-28 15:03:58 +02:00
release=5
2023-05-28 10:24:09 +02:00
source=(https://jfs.sourceforge.net/project/pub/$name-$version.tar.gz
2021-12-14 10:00:24 +01:00
inttypes.patch sysmacros.patch)
build() {
2021-12-14 10:00:24 +01:00
cd $name-$version
2019-01-17 15:10:29 +01:00
2021-12-14 10:00:24 +01:00
patch -p1 -i $SRC/inttypes.patch
patch -p1 -i $SRC/sysmacros.patch
2019-01-17 15:10:29 +01:00
2021-12-14 10:00:24 +01:00
./configure --prefix=/ --mandir=/usr/share/man
2019-01-17 15:10:29 +01:00
2021-12-14 10:00:24 +01:00
make CFLAGS="$CFLAGS -fcommon"
make DESTDIR=$PKG install
2019-01-17 15:10:29 +01:00
2021-12-14 10:00:24 +01:00
ln -sf jfs_mkfs $PKG/sbin/mkfs.jfs
ln -sf jfs_fsck $PKG/sbin/fsck.jfs
ln -sf jfs_mkfs.8 $PKG/usr/share/man/man8/mkfs.jfs.8
ln -sf jfs_fsck.8 $PKG/usr/share/man/man8/fsck.jfs.8
}