diff options
Diffstat (limited to 'packages/vim/vim.inc')
-rw-r--r-- | packages/vim/vim.inc | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/packages/vim/vim.inc b/packages/vim/vim.inc new file mode 100644 index 0000000000..f675ce839f --- /dev/null +++ b/packages/vim/vim.inc @@ -0,0 +1,30 @@ +DESCRIPTION = "Vim is an almost fully-compatible version of the Unix editor Vi." +SECTION = "console/utils" +DEPENDS = "ncurses" +LICENSE = "vim" + +SRC_URI = "ftp://ftp.vim.org/pub/vim/unix/vim-${PV}.tar.bz2 \ + file://configure.patch;patch=1" + +S = "${WORKDIR}/vim${VIMVER}/src" + +inherit autotools + +do_configure () { + rm -f auto/* + touch auto/config.mk + aclocal + autoconf + oe_runconf + touch auto/configure + touch auto/config.mk auto/config.h +} + +PACKAGES =+ "vim-common vim-syntax vim-help vim-tutor" +FILES_vim-syntax = "${datadir}/vim/vim${VIMVER}/syntax" +FILES_vim-help = "${datadir}/vim/vim${VIMVER}/doc" +FILES_vim-tutor = "${datadir}/vim/vim${VIMVER}/tutor ${bindir}/vimtutor" + +#FILES_${PN} = "${bindir} ${sbindir} ${libexecdir} ${libdir}/lib*.so.* \ +# ${libdir}/*/ ${sysconfdir} ${sharedstatedir} ${localstatedir} \ +# /bin /sbin /lib/*/ /lib/*.so* ${datadir}/vim" |