wok view bvi/receipt @ rev 20349

libgcrypt update: 1.7.1 (2016 June) -> 1.8.2 (2017 Dec)
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 10:52:47 2018 +0000 (2018-06-09)
parents
children acd67c0473fb
line source
1 # SliTaz package receipt.
3 PACKAGE="bvi"
4 VERSION="1.4.0"
5 CATEGORY="development"
6 SHORT_DESC="Binary VIsual (hex editor) based on the vi texteditor."
7 MAINTAINER="hackdorte@sapo.pt"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.src.tar.gz"
10 WEB_SITE="http://bvi.sourceforge.net"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="binary development editor hex vi"
14 DEPENDS="ncurses"
16 BUILD_DEPENDS="ncurses-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure --prefix=/usr \
22 --mandir=/usr/share/man \
23 --with-ncurses \
24 $CONFIGURE_ARGS &&
25 make $MAKEFLAGS &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules(){
32 mkdir -p $fs/usr/bin
33 cp -a $install/usr/bin/* $fs/usr/bin
35 mkdir -p $fs/usr/share
36 cp -a $install/usr/share/* $fs/usr/share
38 }