0
0
Fork 0
haikuports/sys-apps/findutils/findutils-4.4.2.recipe

63 lines
1.4 KiB
Bash
Raw Permalink Normal View History

2014-02-21 22:17:14 +00:00
SUMMARY="Basic directory searching utilities"
DESCRIPTION="
GNU Findutils are typically used in conjunction with other programs to \
provide modular and powerful directory search and file locating \
capabilities to other commands.
The tools supplied with this package are:
- find - search for files in a directory hierarchy
- locate - list files in databases that match a pattern
- updatedb - update a file name database
- xargs - build and execute command lines from a standard input.
2014-02-21 22:17:14 +00:00
"
HOMEPAGE="http://www.gnu.org/software/findutils"
COPYRIGHT="1994-2011 Free Software Foundation, Inc."
LICENSE="GNU GPL v3"
2018-08-03 14:02:18 +00:00
REVISION="5"
SOURCE_URI="http://ftp.gnu.org/gnu/findutils/findutils-4.4.2.tar.gz"
CHECKSUM_SHA256="434f32d171cbc0a5e72cfc5372c6fc4cb0e681f8dce566a0de5b6fccd702b62a"
2018-08-03 14:02:18 +00:00
ARCHITECTURES="all"
2014-02-21 22:17:14 +00:00
PROVIDES="
findutils = $portVersion compat >= 4
cmd:find = $portVersion compat >= 4
cmd:locate = $portVersion compat >= 4
2016-07-25 18:45:41 +00:00
cmd:oldfind = $portVersion compat >= 4
2014-02-21 22:17:14 +00:00
cmd:updatedb = $portVersion compat >= 4
cmd:xargs = $portVersion compat >= 4
"
REQUIRES="
haiku
2014-12-28 13:13:53 +00:00
cmd:awk
cmd:sed
cmd:sort
cmd:tr
2014-02-21 22:17:14 +00:00
"
2018-08-03 14:02:18 +00:00
2014-02-21 22:17:14 +00:00
BUILD_PREREQUIRES="
haiku_devel
2014-12-03 19:44:47 +00:00
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
2014-02-21 22:17:14 +00:00
cmd:make
2014-12-03 19:44:47 +00:00
cmd:sed
2014-02-21 22:17:14 +00:00
"
defineDebugInfoPackage findutils \
$binDir/find \
$binDir/locate \
$binDir/xargs
BUILD()
{
2014-02-21 22:17:14 +00:00
runConfigure ./configure \
--without-included-regex \
--disable-rpath --with-gnu-ld
make $jobArgs
}
INSTALL()
{
make install
2014-02-21 22:17:14 +00:00
rm $libDir/charset.alias
}