wok rev 25373

updated tree (1.8.0 -> 2.0.2)
author Hans-G?nter Theisgen
date Fri Jul 29 15:10:59 2022 +0100 (21 months ago)
parents f4b0d727708e
children e375c479e25e
files tree/description.txt tree/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/tree/description.txt	Fri Jul 29 15:10:59 2022 +0100
     1.3 @@ -0,0 +1,3 @@
     1.4 +Tree is a recursive directory listing command that produces a depth
     1.5 +indented listing of files, which is colorized ala dircolors if the
     1.6 +LS_COLORS environment variable is set and output is to tty.
     2.1 --- a/tree/receipt	Fri Jul 29 14:58:56 2022 +0100
     2.2 +++ b/tree/receipt	Fri Jul 29 15:10:59 2022 +0100
     2.3 @@ -1,16 +1,20 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="tree"
     2.7 -VERSION="1.8.0"
     2.8 +VERSION="2.0.2"
     2.9  CATEGORY="utilities"
    2.10  SHORT_DESC="Recursive directory listing program."
    2.11  MAINTAINER="MikeDSmith25@gmail.com"
    2.12  LICENSE="GPL2"
    2.13  WEB_SITE="https://github.com/pyr/tree"
    2.14 +REPOLOGY="tree-steve-baker"
    2.15  
    2.16  TARBALL="$PACKAGE-$VERSION.tgz"
    2.17  WGET_URL="https://gitlab.com/OldManProgrammer/unix-tree/-/archive/$VERSION/unix-tree-$VERSION.tar.gz"
    2.18  
    2.19 +DEPENDS="gcc83-lib-base"
    2.20 +BUILD_DEPENDS="gcc83"
    2.21 +
    2.22  # What is the latest version available today?
    2.23  current_version()
    2.24  {
    2.25 @@ -21,7 +25,7 @@
    2.26  # Rules to configure and make the package.
    2.27  compile_rules()
    2.28  {
    2.29 -	make &&
    2.30 +	make	CC=gcc-83 CXX=g++-83 &&
    2.31  	make	install			\
    2.32  		BINDIR=$DESTDIR/usr/bin	\
    2.33  		MANDIR=$DESTDIR/usr/share/man
    2.34 @@ -30,6 +34,6 @@
    2.35  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.36  genpkg_rules()
    2.37  {
    2.38 -	mkdir -p $fs/usr
    2.39 -	cp -a $install/usr/bin $fs/usr
    2.40 +	mkdir -p $fs/usr/bin
    2.41 +	cp -a $src/tree	$fs/usr/bin
    2.42  }