Files
haikuports/sys-apps/fzy/fzy-1.0.recipe
waddlesplash 4f180bdb94 Utilize the new "all" ARCHITECTURES keyword in most recipes. (#6189)
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has,
is transformed into "all", and then the other entries in ARCHITECTURES
either dropped or rearranged appropriately.
2021-09-15 15:40:18 -04:00

43 lines
750 B
Bash

SUMMARY="A simple, fast fuzzy finder for the terminal"
DESCRIPTION="fzy is a fast, simple fuzzy text selector for the terminal \
with an advanced scoring algorithm."
HOMEPAGE="https://github.com/jhawthorn/fzy"
COPYRIGHT="2014-2020 John Hawthorn"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="https://github.com/jhawthorn/fzy/archive/$portVersion/fzy-$portVersion.tar.gz"
CHECKSUM_SHA256="80257fd74579e13438b05edf50dcdc8cf0cdb1870b4a2bc5967bd1fdbed1facf"
ARCHITECTURES="all ?x86_gcc2 ?arm"
PROVIDES="
fzy = $portVersion
cmd:fzy = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:gcc
cmd:make
"
BUILD()
{
make $jobArgs
}
INSTALL()
{
make BINDIR=$binDir MANDIR=$manDir install
}
TEST()
{
make check
}