# HG changeset patch # User Hans-G?nter Theisgen # Date 1659103859 -3600 # Node ID 0456ac2803aa3ef45ad7555eb3159bc018bad010 # Parent f4b0d727708e8879c498f6dbeb335bf2e3fbafd4 updated tree (1.8.0 -> 2.0.2) diff -r f4b0d727708e -r 0456ac2803aa tree/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tree/description.txt Fri Jul 29 15:10:59 2022 +0100 @@ -0,0 +1,3 @@ +Tree is a recursive directory listing command that produces a depth +indented listing of files, which is colorized ala dircolors if the +LS_COLORS environment variable is set and output is to tty. diff -r f4b0d727708e -r 0456ac2803aa tree/receipt --- a/tree/receipt Fri Jul 29 14:58:56 2022 +0100 +++ b/tree/receipt Fri Jul 29 15:10:59 2022 +0100 @@ -1,16 +1,20 @@ # SliTaz package receipt. PACKAGE="tree" -VERSION="1.8.0" +VERSION="2.0.2" CATEGORY="utilities" SHORT_DESC="Recursive directory listing program." MAINTAINER="MikeDSmith25@gmail.com" LICENSE="GPL2" WEB_SITE="https://github.com/pyr/tree" +REPOLOGY="tree-steve-baker" TARBALL="$PACKAGE-$VERSION.tgz" WGET_URL="https://gitlab.com/OldManProgrammer/unix-tree/-/archive/$VERSION/unix-tree-$VERSION.tar.gz" +DEPENDS="gcc83-lib-base" +BUILD_DEPENDS="gcc83" + # What is the latest version available today? current_version() { @@ -21,7 +25,7 @@ # Rules to configure and make the package. compile_rules() { - make && + make CC=gcc-83 CXX=g++-83 && make install \ BINDIR=$DESTDIR/usr/bin \ MANDIR=$DESTDIR/usr/share/man @@ -30,6 +34,6 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr + mkdir -p $fs/usr/bin + cp -a $src/tree $fs/usr/bin }