wok view vfu/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 c7c3567bd8d4
children 922f061231c2
line source
1 # SliTaz package receipt.
3 PACKAGE="vfu"
4 VERSION="4.12"
5 CATEGORY="utilities"
6 SHORT_DESC="VFU is a console (text mode) file manager for UNIX/Linux."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://cade.datamax.bg/vfu/"
11 WGET_URL="http://cade.datamax.bg/vfu/$TARBALL"
13 DEPENDS="ncurses pcre"
14 BUILD_DEPENDS="ncurses-dev pcre-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 make LDDEF=-ltinfo
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin $fs/usr/lib/vfu $fs/etc
26 cp -a $src/vfu/vfu $fs/usr/bin
27 cp -a $src/rx/rx_* $fs/usr/lib/vfu
28 cp -a $src/vfu.conf $fs/etc
29 chown root:root $fs/etc/vfu.conf
30 chown -R root:root $fs/usr/lib/vfu
31 }