mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-22 11:40:06 +02:00
46 lines
1.1 KiB
Bash
46 lines
1.1 KiB
Bash
SUMMARY="Interactive text-based user interface for Fossil"
|
|
DESCRIPTION="fnc uses ncurses and libfossil to create a fossil ui experience in the terminal, \
|
|
and parse local changes at the hunk level to prepare atomic commits."
|
|
HOMEPAGE="https://fnc.bsdbox.org/"
|
|
COPYRIGHT="2021, 2022 Mark Jamsek"
|
|
LICENSE="ISC"
|
|
REVISION="1"
|
|
SOURCE_URI="https://fnc.bsdbox.org/uv/dl/fnc-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="49f94c67e00213440d84f3b09bcf75850f9b6e8d8721856d68f4596c49cec780"
|
|
SOURCE_DIR="fnc-$portVersion"
|
|
PATCHES="fnc-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
fnc$secondaryArchSuffix = $portVersion
|
|
cmd:fnc = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libncursesw$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
"
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libncursesw$secondaryArchSuffix
|
|
devel:libz$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
# The makefile uses: ${PREFIX}${MANDIR}/man1
|
|
make PREFIX=$prefix MANDIR="/$relativeManDir" install
|
|
install -D -m 644 README.md CHANGES.md -t $docDir
|
|
}
|