wok-next diff tree/receipt @ rev 20963

Add hackdorte-artwork and remove appropriate old packages with dead homepages
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Sep 08 15:02:14 2018 +0300 (2018-09-08)
parents 600aaedb561d
children f48456621a9d
line diff
     1.1 --- a/tree/receipt	Mon Dec 02 19:18:04 2013 +0000
     1.2 +++ b/tree/receipt	Sat Sep 08 15:02:14 2018 +0300
     1.3 @@ -1,27 +1,25 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="tree"
     1.8 -VERSION="1.6.0"
     1.9 +VERSION="1.7.0"
    1.10  CATEGORY="utilities"
    1.11  SHORT_DESC="Recursive directory listing program"
    1.12  MAINTAINER="MikeDSmith25@gmail.com"
    1.13  LICENSE="GPL2"
    1.14 +WEB_SITE="http://mama.indstate.edu/users/ice/tree/"
    1.15 +LFS="http://www.linuxfromscratch.org/blfs/view/stable/general/tree.html"
    1.16 +
    1.17  TARBALL="$PACKAGE-$VERSION.tgz"
    1.18 -WEB_SITE="http://mama.indstate.edu/users/ice/tree/"
    1.19 -WGET_URL="ftp://mama.indstate.edu/linux/tree/$TARBALL"
    1.20 +WGET_URL="http://mama.indstate.edu/users/ice/tree/src/$TARBALL"
    1.21  
    1.22 -# Rules to configure and make the package.
    1.23 -compile_rules()
    1.24 -{
    1.25 -	cd $src
    1.26 -	make
    1.27 -	make BINDIR=$DESTDIR/usr/bin MANDIR=$DESTDIR/usr/share/man install
    1.28 +compile_rules() {
    1.29 +	make &&
    1.30 +	make \
    1.31 +		BINDIR=$install/usr/bin \
    1.32 +		MANDIR=$install/usr/share/man/man1 \
    1.33 +		install || return 1
    1.34  }
    1.35  
    1.36 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.37 -genpkg_rules()
    1.38 -{
    1.39 -	mkdir -p $fs/usr
    1.40 -	cp -a $install/usr/bin $fs/usr
    1.41 +genpkg_rules() {
    1.42 +	copy @std
    1.43  }
    1.44 -