Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10085 - (show annotations) (download)
Mon Jan 16 20:26:39 2012 UTC (12 years, 8 months ago) by niro
File size: 655 byte(s)
auto added: ver bump to 1.6.0-r1
1 # $Id$
2
3 PNAME="tree"
4 PVER="1.6.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
19 SRC_URI=(
20 ftp://mama.indstate.edu/linux/${PNAME}/${SRCFILE}
21 mirror://${PNAME}/${SRCFILE}
22 )
23
24 UP2DATE="updatecmd ${HOMEPAGE} | lasttarball tgz"
25
26 src_compile()
27 {
28 cd ${SRCDIR}
29 mmake || die
30 }
31
32 src_install()
33 {
34 cd ${SRCDIR}
35 minstallexec tree || die
36 minstallman doc/tree\*.1 || die
37 minstalldocs CHANGES COPYING README || die
38 }