wok view vifm/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 07e5f46bebd3
children 922f061231c2
line source
1 # SliTaz package receipt.
3 PACKAGE="vifm"
4 VERSION="0.10.1"
5 CATEGORY="utilities"
6 SHORT_DESC="Vi File Manager."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://vifm.info/"
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 DESTDIR=$DESTDIR -j 1 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 }