mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-17 17:20:07 +02:00
41 lines
814 B
Plaintext
41 lines
814 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_MD5="95be0501a466e515422cde4af46b2744"
|
|
REVISION="2"
|
|
ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PATCHES="which-2.20.patch"
|
|
|
|
PROVIDES="
|
|
which = $portVersion
|
|
cmd:which = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku >= $haikuVersion
|
|
"
|
|
BUILD_REQUIRES="
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel >= $haikuVersion
|
|
cmd:gcc
|
|
cmd:make
|
|
"
|
|
|
|
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.
|
|
"
|