mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-15 16:20:08 +02:00
70 lines
1.5 KiB
Plaintext
70 lines
1.5 KiB
Plaintext
SUMMARY="Vim is highly configurable text editor."
|
|
DESCRIPTION="
|
|
Vim is a highly configurable text editor built to enable efficient text
|
|
editing. It is an improved version of the vi editor distributed with most
|
|
UNIX systems.
|
|
|
|
Vim is often called a \"programmer's editor,\" and so useful for programming
|
|
that many consider it an entire IDE. It's not just for programmers, though.
|
|
Vim is perfect for all kinds of text editing, from composing email to editing
|
|
configuration files.
|
|
|
|
Despite what the above comic suggests, Vim can be configured to work in a very
|
|
simple (Notepad-like) way, called evim or Easy Vim.
|
|
"
|
|
HOMEPAGE="http://www.vim.org"
|
|
SRC_URI="ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2"
|
|
COPYRIGHT="Bram Moleenar et al."
|
|
LICENSE="Vim"
|
|
REVISION="1"
|
|
CHECKSUM_MD5="5b9510a17074e2b37d8bb38ae09edbf2"
|
|
ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
vim = $portVersion
|
|
cmd:ex = $portVersion
|
|
cmd:gview = $portVersion
|
|
cmd:gvim = $portVersion
|
|
cmd:gvimdiff = $portVersion
|
|
cmd:rgview = $portVersion
|
|
cmd:rgvim = $portVersion
|
|
cmd:rview = $portVersion
|
|
cmd:rvim = $portVersion
|
|
cmd:vim = $portVersion
|
|
cmd:vimdiff = $portVersion
|
|
cmd:vimtutor = $portVersion
|
|
cmd:view = $portVersion
|
|
cmd:xxd = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libncurses
|
|
"
|
|
BUILD_REQUIRES="
|
|
ncurses_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:make
|
|
cmd:autoconf
|
|
cmd:gcc
|
|
"
|
|
|
|
SOURCE_DIR="vim73"
|
|
PATCHES="
|
|
vim-7.3.patchset
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cd src
|
|
make autoconf
|
|
cd ../
|
|
runConfigure ./configure --with-features=big
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|