mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
* Referring the current haiku version explicitly is not needed, since the RequiresUpdater takes care of setting the version of Haiku used for building a package.
45 lines
883 B
Plaintext
45 lines
883 B
Plaintext
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/"
|
|
SRC_URI="http://mama.indstate.edu/users/ice/tree/src/tree-$portVersion.tgz"
|
|
CHECKSUM_SHA256="6957c20e82561ac4231638996e74f4cfa4e6faabc5a2f511f0b4e3940e8f7b12"
|
|
|
|
REVISION="1"
|
|
|
|
LICENSE="GNU GPL v2"
|
|
COPYRIGHT="1996-2011 Steve Baker"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="?x86_gcc2 ?x86"
|
|
|
|
PATCHES="tree-1.7.0.patchset"
|
|
|
|
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
|
|
}
|