wok-next annotate vifm/receipt.orig @ rev 16355
Add ftop
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Sun Apr 13 17:41:38 2014 +0100 (2014-04-13) |
parents | |
children |
rev | line source |
---|---|
pascal@15723 | 1 # SliTaz package receipt. |
pascal@15723 | 2 |
pascal@15723 | 3 PACKAGE="vifm" |
pascal@15723 | 4 VERSION="0.7.6-beta2" |
pascal@15723 | 5 CATEGORY="utilities" |
pascal@15723 | 6 SHORT_DESC="Vi File Manager." |
pascal@15723 | 7 MAINTAINER="paul@slitaz.org" |
pascal@15723 | 8 LICENCE="GPL2" |
pascal@15723 | 9 DEPENDS="ncurses libmagic xorg-libX11 vim file" |
pascal@15723 | 10 BUILD_DEPENDS="ncurses-dev libmagic-dev xorg-libX11-dev util-linux-whereis vim file" |
pascal@15723 | 11 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@15723 | 12 WEB_SITE="http://vifm.sourceforge.net/" |
pascal@15723 | 13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pascal@15723 | 14 |
pascal@15723 | 15 DEPENDS="ncurses libmagic xorg-libX11 vim" |
pascal@15723 | 16 BUILD_DEPENDS="ncurses-dev libmagic-dev xorg-libX11-dev util-linux-whereis vim" |
pascal@15723 | 17 |
pascal@15723 | 18 # Rules to configure and make the package. |
pascal@15723 | 19 compile_rules() |
pascal@15723 | 20 { |
pascal@15723 | 21 cd $src |
pascal@15723 | 22 ./configure \ |
pascal@15723 | 23 --prefix=/usr \ |
pascal@15723 | 24 $CONFIGURE_ARGS && |
pascal@15723 | 25 make && make DESTDIR=$DESTDIR install |
pascal@15723 | 26 } |
pascal@15723 | 27 |
pascal@15723 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@15723 | 29 genpkg_rules() |
pascal@15723 | 30 { |
pascal@15723 | 31 mkdir -p $fs/usr |
pascal@15723 | 32 cp -a $install/usr/bin $fs/usr |
pascal@15723 | 33 cp -a $install/usr/share $fs/usr |
pascal@15723 | 34 # rm stuff |
pascal@15723 | 35 rm -rf $fs/usr/share/man |
pascal@15723 | 36 } |
pascal@15723 | 37 |