wok view tree/receipt @ rev 22051

updated tree (1.6.0 -> 1.8.0)
author Hans-G?nter Theisgen
date Tue Oct 22 16:30:18 2019 +0100 (2019-10-22)
parents 90a87813caa6
children 804a303f31dc
line source
1 # SliTaz package receipt.
3 PACKAGE="tree"
4 VERSION="1.8.0"
5 CATEGORY="utilities"
6 SHORT_DESC="Recursive directory listing program."
7 MAINTAINER="MikeDSmith25@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://mama.indstate.edu/users/ice/tree/"
11 TARBALL="$PACKAGE-$VERSION.tgz"
12 WGET_URL="ftp://mama.indstate.edu/linux/tree/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 make &&
18 make install \
19 BINDIR=$DESTDIR/usr/bin \
20 MANDIR=$DESTDIR/usr/share/man
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $install/usr/bin $fs/usr
28 }