mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-22 11:40:06 +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.
44 lines
847 B
Plaintext
44 lines
847 B
Plaintext
SUMMARY="Prints out location of specified executables that are in your path"
|
|
HOMEPAGE="http://carlo17.home.xs4all.nl/which/"
|
|
COPYRIGHT="Free Software Foundation"
|
|
LICENSE="GNU GPL v2"
|
|
SRC_URI="http://ftp.gnu.org/gnu/which/which-2.20.tar.gz"
|
|
CHECKSUM_SHA256="d417b65c650d88ad26a208293c1c6e3eb60d4b6d847f01ff8f66aca63e2857f8"
|
|
REVISION="2"
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64 arm"
|
|
|
|
PATCHES="which-2.20.patch"
|
|
|
|
PROVIDES="
|
|
which = $portVersion
|
|
cmd:which = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
BUILD_REQUIRES="
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
cmd:gcc
|
|
cmd:make
|
|
cmd:sed
|
|
cmd:grep
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
runConfigure ./configure --disable-dependency-tracking
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|
|
|
|
DESCRIPTION="
|
|
GNU which is an utility that is used to find which executable (or alias or \
|
|
shell function) is executed when entered on the shell prompt.
|
|
"
|