# HG changeset patch # User Pascal Bellard # Date 1408290938 -7200 # Node ID 6c69cec5b70f403752ad4bee019f8e7415ca353f # Parent 51a123a3f6f59a337cfd0830c28a6ce6a7d10806 Add mfstool diff -r 51a123a3f6f5 -r 6c69cec5b70f mfstool/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mfstool/receipt Sun Aug 17 17:55:38 2014 +0200 @@ -0,0 +1,25 @@ +# SliTaz package receipt. + +PACKAGE="mfstool" +VERSION="0.5pre" +CATEGORY="base-system" +SHORT_DESC="Allows to manipulate Minix filesystem images in user-space." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://mfstool.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure --prefix=/usr $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs/ +}