wok view vfu/receipt @ rev 16814

Up pcre and pcre-dev to version 8.35
author Yuri Pourre <yuripourre@gmail.com>
date Thu Jul 10 22:42:36 2014 -0300 (2014-07-10)
parents 33e84bccec26
children 3ba8d2c9720d
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 cd $src
20 make
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin $fs/usr/lib/vfu $fs/etc
27 cp -a $src/vfu/vfu $fs/usr/bin
28 cp -a $src/rx/rx_* $fs/usr/lib/vfu
29 cp -a $src/vfu.conf $fs/etc
30 chown root:root $fs/etc/vfu.conf
31 chown -R root:root $fs/usr/lib/vfu
32 }