mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-14 15:50:07 +02:00
41 lines
881 B
Bash
41 lines
881 B
Bash
SUMMARY="Lists directories and files recursively"
|
|
DESCRIPTION="Lists directories recursively, and produces an indented listing \
|
|
of files."
|
|
HOMEPAGE="http://mama.indstate.edu/users/ice/tree/"
|
|
COPYRIGHT="1996-2011 Steve Baker"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="2"
|
|
SOURCE_URI="http://mama.indstate.edu/users/ice/tree/src/tree-$portVersion.tgz"
|
|
CHECKSUM_SHA256="6957c20e82561ac4231638996e74f4cfa4e6faabc5a2f511f0b4e3940e8f7b12"
|
|
PATCHES="tree-1.7.0.patchset"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="?x86_gcc2 ?x86"
|
|
|
|
PROVIDES="
|
|
tree = $portVersion
|
|
cmd:tree$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install MANDIR=$manDir/man1 prefix=$prefix
|
|
}
|