Magellan Linux

Contents of /trunk/core/tree/tree-1.7.0-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 29724 - (show annotations) (download)
Tue Oct 10 07:19:20 2017 UTC (6 years, 6 months ago) by niro
File size: 679 byte(s)
-updated UP2DATE uri
1 # $Id$
2
3 PNAME="tree"
4 PVER="1.7.0"
5 PBUILD="r1"
6
7 PCAT="app-text"
8
9 DESCRIPTION="Lists directories recursively, and produces an indented listing of files."
10 HOMEPAGE="http://mama.indstate.edu/users/ice/tree/"
11
12 DEPEND=">= virtual/glibc"
13
14 SRCFILE="${PNAME}-${PVER}.tgz"
15 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
16
17 sminclude mbuild mtools
18 msetfeature "!check"
19
20 SRC_URI=(
21 ftp://mama.indstate.edu/linux/${PNAME}/${SRCFILE}
22 mirror://${PNAME}/${SRCFILE}
23 )
24
25 UP2DATE="updatecmd ${HOMEPAGE} | highesttarball tgz"
26
27 src_compile()
28 {
29 cd ${SRCDIR}
30 mmake || die
31 }
32
33 src_install()
34 {
35 cd ${SRCDIR}
36 minstallexec tree || die
37 minstallman doc/tree\*.1 || die
38 minstalldocs CHANGES COPYING README || die
39 }