wok-next diff bvi/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents 8c8391016d94
children 90e4058fa9c1
line diff
     1.1 --- a/bvi/receipt	Mon Jun 06 10:28:32 2016 -0300
     1.2 +++ b/bvi/receipt	Fri Nov 02 14:15:08 2018 +0200
     1.3 @@ -1,38 +1,30 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="bvi"
     1.8  VERSION="1.4.0"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Binary VIsual (hex editor) based on the vi texteditor."
    1.11 -MAINTAINER="hackdorte@sapo.pt"
    1.12 +SHORT_DESC="Binary VIsual (hex editor) based on the vi texteditor"
    1.13 +MAINTAINER="devel@slitaz.org"
    1.14  LICENSE="GPL2"
    1.15 +WEB_SITE="http://bvi.sourceforge.net/"
    1.16 +
    1.17  TARBALL="$PACKAGE-$VERSION.src.tar.gz"
    1.18 -WEB_SITE="http://bvi.sourceforge.net"
    1.19  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.20 -TAGS="binary development editor hex vi"
    1.21 -
    1.22 -DEPENDS="ncurses"
    1.23  
    1.24  BUILD_DEPENDS="ncurses-dev"
    1.25  
    1.26 -# Rules to configure and make the package.
    1.27 -compile_rules()
    1.28 -{
    1.29 -  ./configure --prefix=/usr \
    1.30 -    --mandir=/usr/share/man \
    1.31 -    --with-ncurses \
    1.32 -    $CONFIGURE_ARGS &&
    1.33 -    make $MAKEFLAGS &&
    1.34 -    make DESTDIR=$DESTDIR install
    1.35 +compile_rules() {
    1.36 +	./configure \
    1.37 +		--prefix=/usr \
    1.38 +		--mandir=/usr/share/man \
    1.39 +		--with-ncurses \
    1.40 +		$CONFIGURE_ARGS &&
    1.41 +	make $MAKEFLAGS &&
    1.42 +	make DESTDIR=$install install
    1.43  }
    1.44  
    1.45 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.46 -genpkg_rules(){
    1.47 -
    1.48 -  mkdir -p $fs/usr/bin
    1.49 -  cp -a $install/usr/bin/* $fs/usr/bin
    1.50 -
    1.51 -  mkdir -p $fs/usr/share
    1.52 -  cp -a $install/usr/share/* $fs/usr/share
    1.53 -
    1.54 +genpkg_rules() {
    1.55 +	copy @std
    1.56 +	DEPENDS="ncurses"
    1.57 +	TAGS="binary development editor hex vi"
    1.58  }