wok-6.x annotate fstransform/receipt @ rev 23906
Add fstransform
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Aug 03 14:59:04 2020 +0000 (2020-08-03) |
parents | |
children | f96e26cdfd7a |
rev | line source |
---|---|
pascal@23906 | 1 # SliTaz package receipt. |
pascal@23906 | 2 |
pascal@23906 | 3 PACKAGE="fstransform" |
pascal@23906 | 4 VERSION="0.9.3.patch1" |
pascal@23906 | 5 CATEGORY="base-system" |
pascal@23906 | 6 SHORT_DESC="In-place filesystem conversion (for example from jfs/xfs/reiser to ext2/ext3/ext4) without backup" |
pascal@23906 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@23906 | 8 LICENSE="GPL3" |
pascal@23906 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@23906 | 10 WEB_SITE="https://github.com/cosmos72/fstransform" |
pascal@23906 | 11 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" |
pascal@23906 | 12 TAGS="filesystem" |
pascal@23906 | 13 |
pascal@23906 | 14 SUGGESTED="jfsutils xfsprogs reiserfsprogs reiser4progs e2fsprogs" |
pascal@23906 | 15 |
pascal@23906 | 16 # Rules to configure and make the package. |
pascal@23906 | 17 compile_rules() |
pascal@23906 | 18 { |
pascal@23906 | 19 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@23906 | 20 --mandir=/usr/share/man \ |
pascal@23906 | 21 $CONFIGURE_ARGS && |
pascal@23906 | 22 make && |
pascal@23906 | 23 make DESTDIR=$DESTDIR install |
pascal@23906 | 24 } |
pascal@23906 | 25 |
pascal@23906 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@23906 | 27 genpkg_rules() |
pascal@23906 | 28 { |
pascal@23906 | 29 mkdir -p $fs/usr/share |
pascal@23906 | 30 cp -a $install/usr/sbin $fs/usr |
pascal@23906 | 31 cp -a $src/doc $src/README $fs/usr/share |
pascal@23906 | 32 } |