wok-next diff mfstool/receipt @ rev 21020
Cleaning is almost finished... I should proceed to upgrades.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Nov 02 14:15:08 2018 +0200 (2018-11-02) |
parents | 6c69cec5b70f |
children |
line diff
1.1 --- a/mfstool/receipt Sun Aug 17 17:55:38 2014 +0200 1.2 +++ b/mfstool/receipt Fri Nov 02 14:15:08 2018 +0200 1.3 @@ -3,23 +3,22 @@ 1.4 PACKAGE="mfstool" 1.5 VERSION="0.5pre" 1.6 CATEGORY="base-system" 1.7 -SHORT_DESC="Allows to manipulate Minix filesystem images in user-space." 1.8 +SHORT_DESC="Allows to manipulate Minix filesystem images in user-space" 1.9 MAINTAINER="pascal.bellard@slitaz.org" 1.10 LICENSE="GPL2" 1.11 +WEB_SITE="http://mfstool.sourceforge.net/" 1.12 + 1.13 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 -WEB_SITE="http://mfstool.sourceforge.net/" 1.15 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.16 1.17 -# Rules to configure and make the package. 1.18 -compile_rules() 1.19 -{ 1.20 - ./configure --prefix=/usr $CONFIGURE_ARGS && 1.21 +compile_rules() { 1.22 + ./configure \ 1.23 + --prefix=/usr \ 1.24 + $CONFIGURE_ARGS && 1.25 make && 1.26 - make DESTDIR=$DESTDIR install 1.27 + make DESTDIR=$install install 1.28 } 1.29 1.30 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.31 -genpkg_rules() 1.32 -{ 1.33 +genpkg_rules() { 1.34 cp -a $install/* $fs/ 1.35 }