wok-6.x diff tree/receipt @ rev 25510
Update some web_site
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Feb 12 20:36:56 2023 +0000 (21 months ago) |
parents | 1805f71c5d9f |
children |
line diff
1.1 --- a/tree/receipt Fri May 06 11:04:25 2022 +0000 1.2 +++ b/tree/receipt Sun Feb 12 20:36:56 2023 +0000 1.3 @@ -1,16 +1,20 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="tree" 1.7 -VERSION="1.8.0" 1.8 +VERSION="2.0.2" 1.9 CATEGORY="utilities" 1.10 SHORT_DESC="Recursive directory listing program." 1.11 MAINTAINER="MikeDSmith25@gmail.com" 1.12 LICENSE="GPL2" 1.13 WEB_SITE="https://github.com/pyr/tree" 1.14 +REPOLOGY="tree-steve-baker" 1.15 1.16 TARBALL="$PACKAGE-$VERSION.tgz" 1.17 WGET_URL="https://gitlab.com/OldManProgrammer/unix-tree/-/archive/$VERSION/unix-tree-$VERSION.tar.gz" 1.18 1.19 +DEPENDS="gcc83-lib-base" 1.20 +BUILD_DEPENDS="gcc83" 1.21 + 1.22 # What is the latest version available today? 1.23 current_version() 1.24 { 1.25 @@ -21,7 +25,7 @@ 1.26 # Rules to configure and make the package. 1.27 compile_rules() 1.28 { 1.29 - make && 1.30 + make CC=gcc-83 CXX=g++-83 && 1.31 make install \ 1.32 BINDIR=$DESTDIR/usr/bin \ 1.33 MANDIR=$DESTDIR/usr/share/man 1.34 @@ -30,6 +34,6 @@ 1.35 # Rules to gen a SliTaz package suitable for Tazpkg. 1.36 genpkg_rules() 1.37 { 1.38 - mkdir -p $fs/usr 1.39 - cp -a $install/usr/bin $fs/usr 1.40 + mkdir -p $fs/usr/bin 1.41 + cp -a $src/tree $fs/usr/bin 1.42 }