wok view vifm/receipt.orig @ rev 17009

Add gnome-hearts
author Yuri Pourre <yuripourre@gmail.com>
date Tue Aug 12 14:41:19 2014 -0300 (2014-08-12)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="vifm"
4 VERSION="0.7.6-beta2"
5 CATEGORY="utilities"
6 SHORT_DESC="Vi File Manager."
7 MAINTAINER="paul@slitaz.org"
8 LICENCE="GPL2"
9 DEPENDS="ncurses libmagic xorg-libX11 vim file"
10 BUILD_DEPENDS="ncurses-dev libmagic-dev xorg-libX11-dev util-linux-whereis vim file"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://vifm.sourceforge.net/"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 DEPENDS="ncurses libmagic xorg-libX11 vim"
16 BUILD_DEPENDS="ncurses-dev libmagic-dev xorg-libX11-dev util-linux-whereis vim"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure \
23 --prefix=/usr \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/share $fs/usr
34 # rm stuff
35 rm -rf $fs/usr/share/man
36 }