mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
less: bump version.
This commit is contained in:
70
sys-apps/less/less-551.recipe
Normal file
70
sys-apps/less/less-551.recipe
Normal file
@@ -0,0 +1,70 @@
|
||||
SUMMARY="A free, open-source file pager"
|
||||
DESCRIPTION="GNU 'less' is a program similar to 'more', but which allows \
|
||||
backward movement in the file as well as forward movement. Also, 'less' \
|
||||
does not have to read the entire input file before starting, so with \
|
||||
large input files it starts up faster than text editors like 'vi'.
|
||||
Less uses 'termcap' (or 'terminfo' on some systems), so it can run on a \
|
||||
variety of terminals. There is even limited support for hardcopy terminals."
|
||||
HOMEPAGE="http://www.greenwoodsoftware.com/less/"
|
||||
COPYRIGHT="1984-2018 Mark Nudelman"
|
||||
LICENSE="GNU GPL v3"
|
||||
REVISION="1"
|
||||
SOURCE_URI="http://www.greenwoodsoftware.com/less/less-$portVersion.tar.gz"
|
||||
CHECKSUM_SHA256="ff165275859381a63f19135a8f1f6c5a194d53ec3187f94121ecd8ef0795fe3d"
|
||||
PATCHES="less-$portVersion.patchset"
|
||||
ADDITIONAL_FILES="sysless.in"
|
||||
|
||||
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
||||
|
||||
GLOBAL_WRITABLE_FILES="
|
||||
settings/etc/sysless.src keep-old
|
||||
settings/etc/sysless keep-old
|
||||
"
|
||||
|
||||
PROVIDES="
|
||||
less = $portVersion
|
||||
cmd:less
|
||||
cmd:lessecho
|
||||
cmd:lesskey
|
||||
"
|
||||
REQUIRES="
|
||||
haiku$secondaryArchSuffix
|
||||
lib:libncurses$secondaryArchSuffix
|
||||
"
|
||||
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
devel:libncurses$secondaryArchSuffix
|
||||
"
|
||||
BUILD_PREREQUIRES="
|
||||
cmd:aclocal
|
||||
cmd:autoconf
|
||||
cmd:gcc$secondaryArchSuffix
|
||||
cmd:ld$secondaryArchSuffix
|
||||
cmd:make
|
||||
"
|
||||
|
||||
BUILD()
|
||||
{
|
||||
autoconf
|
||||
runConfigure ./configure --with-editor=nano \
|
||||
--sysconfdir="$settingsDir/etc"
|
||||
make
|
||||
}
|
||||
|
||||
INSTALL()
|
||||
{
|
||||
make install-strip
|
||||
|
||||
syslessDir=$settingsDir/etc
|
||||
mkdir "$syslessDir"
|
||||
cp "$portDir/additional-files/sysless.in" \
|
||||
"$syslessDir/sysless.src"
|
||||
"$binDir"/lesskey -o "$syslessDir/sysless" \
|
||||
"$syslessDir/sysless.src"
|
||||
}
|
||||
|
||||
TEST()
|
||||
{
|
||||
make check
|
||||
}
|
||||
Reference in New Issue
Block a user