wok view bvi/receipt @ rev 22839

modified get-litecoin
author Hans-G?nter Theisgen
date Tue Feb 11 10:43:44 2020 +0100 (2020-02-11)
parents 8c8391016d94
children 5f6c5106b1f5
line source
1 # SliTaz package receipt.
3 PACKAGE="bvi"
4 VERSION="1.4.1"
5 CATEGORY="development"
6 TAGS="binary development editor hex vi"
7 SHORT_DESC="Binary VIsual (hex editor) based on the vi texteditor."
8 MAINTAINER="hackdorte@sapo.pt"
9 LICENSE="GPL2"
10 WEB_SITE="http://bvi.sourceforge.net"
12 TARBALL="$PACKAGE-$VERSION.src.tar.gz"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 DEPENDS="ncurses"
17 BUILD_DEPENDS="ncurses-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --prefix=/usr \
24 --mandir=/usr/share/man \
25 --with-ncurses \
26 $CONFIGURE_ARGS &&
27 make $MAKEFLAGS &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules(){
33 mkdir -p $fs/usr/bin
34 mkdir -p $fs/usr/share
36 cp -a $install/usr/bin/* $fs/usr/bin
37 cp -a $install/usr/share/* $fs/usr/share
38 }