mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-18 09:40:05 +02:00
41 lines
681 B
Bash
41 lines
681 B
Bash
SUMMARY="A grep-like text finder"
|
|
DESCRIPTION="ack is designed as an alternative to grep for programmers."
|
|
HOMEPAGE="https://beyondgrep.com/"
|
|
COPYRIGHT="2005-2018 Andy Lester"
|
|
LICENSE="Artistic"
|
|
REVISION="3"
|
|
SOURCE_URI="http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/ack-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="72934009ad8fe712deeb2c41960f2746d0a25e3a226ad7c54232c00105e54f00"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
ack = $portVersion
|
|
cmd:ack
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
file_next
|
|
vendor_perl
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
file_next
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:make
|
|
cmd:perl
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
perl Makefile.PL PREFIX=$prefix
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install DESTDIR="${DESTDIR}"
|
|
}
|