28 lines
950 B
Text
28 lines
950 B
Text
# Template file for 'vim'
|
|
pkgname=vim
|
|
_distver=7.3
|
|
_patchver=515
|
|
version=${_distver}.${_patchver}
|
|
build_style=gnu-configure
|
|
configure_args="--disable-perlinterp --disable-pythoninterp --disable-rubyinterp
|
|
--disable-cscope --disable-workshop --disable-netbeans --disable-sniff
|
|
--disable-gpm --disable-hangulinput --disable-xim --enable-gui=no
|
|
--without-x --enable-multibyte --with-tlib=ncursesw"
|
|
depends="vim-common>=7.3.515"
|
|
makedepends="mercurial ncurses-devel acl-devel"
|
|
short_desc="Vim editor (vi clone)"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
long_desc="
|
|
Vim is an almost compatible version of the UNIX editor Vi. Many new features
|
|
have been added: multi level undo, syntax highlighting, command line history,
|
|
on-line help, filename completion, block operations, etc."
|
|
|
|
nofetch=yes
|
|
noextract=yes
|
|
subpackages="vim-common"
|
|
|
|
|
|
do_fetch() {
|
|
local url="http://code.google.com/p/vim/"
|
|
hg clone -u v7-3-${_patchver} ${url} ${pkgname}-${version}
|
|
}
|