mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
55 lines
1.3 KiB
Plaintext
55 lines
1.3 KiB
Plaintext
SUMMARY="A program to help shell scripts parse command-line parameters."
|
|
DESCRIPTION="
|
|
Getopt(1) is a program to help shell scripts parse command-line parameters.
|
|
*It can do anything that the GNU getopt(3) routines can do.
|
|
*It can cope with spaces and shell metacharacters within arguments.
|
|
*It can parse long parameters.
|
|
*It can shuffle parameters, so you can mix options and other parameters on the \
|
|
command-line.
|
|
*It can be easily identified as an enhanced getopt(1) from within shell scripts.
|
|
*It can report parse errors as coming from the shell script.
|
|
*It compiles cleanly with both libc-5 and glibc-2 (libc6).
|
|
"
|
|
HOMEPAGE="http://software.frodo.looijaard.name/getopt/"
|
|
SRC_URI="http://software.frodo.looijaard.name/getopt/files/getopt-1.1.5.tar.gz"
|
|
CHECKSUM_SHA256="11893276b94b1629606ab75772143918a5713259950fbf4216288e246f19fbb6"
|
|
REVISION="1"
|
|
LICENSE="GNU GPL v2"
|
|
COPYRIGHT="1997-2012 Frodo Looijaard"
|
|
ARCHITECTURES="x86 x86_gcc2"
|
|
|
|
|
|
PROVIDES="
|
|
getopt = $portVersion
|
|
cmd:getopt = $portVersion
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku >= $haikuVersion
|
|
"
|
|
|
|
BUILD_REQUIRES=""
|
|
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel >= $haikuVersion
|
|
cmd:make
|
|
cmd:gcc
|
|
"
|
|
|
|
PATCH()
|
|
{
|
|
sed -i 's/WITHOUT_GETTEXT=0/WITHOUT_GETTEXT=1/' Makefile
|
|
}
|
|
|
|
BUILD()
|
|
{
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install \
|
|
prefix=$prefix \
|
|
mandir=$manDir
|
|
}
|