wok view vifm/receipt @ rev 21909

updated sic (1.1 -> 1.2)
author Hans-G?nter Theisgen
date Fri Oct 04 15:39:32 2019 +0100 (2019-10-04)
parents 703944c2942c
children 07e5f46bebd3
line source
1 # SliTaz package receipt.
3 PACKAGE="vifm"
4 VERSION="0.10"
5 CATEGORY="utilities"
6 SHORT_DESC="Vi File Manager."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://vifm.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="file libmagic ncurses vim xorg-libX11"
15 BUILD_DEPENDS="file groff libmagic-dev ncurses-dev util-linux-whereis \
16 vim xorg-libX11-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --without-gtk \
24 --with-libmagic \
25 --datadir=/usr/share \
26 $CONFIGURE_ARGS &&
27 make &&
28 make -j 1 DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/share $fs/usr
39 # rm stuff
40 rm -rf $fs/usr/share/man
41 }