wok view bvi/receipt @ rev 20645

updated hostapd (2.6 -> 2.7)
author Hans-G?nter Theisgen
date Fri Jan 11 16:39:21 2019 +0100 (2019-01-11)
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 }