diff options
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | package/vim/Makefile | 5 |
2 files changed, 4 insertions, 3 deletions
@@ -1,10 +1,8 @@ -- keyboard layout support - relocatable gcc - adkinstall with NTP and hwclock support - newtarget simplify and make target like newpackage - PKG_CONFLICTS for python/python2, is this possible with Kconfig? - mirror only option, no internet access -- vim tabbing for split command - terminal issue - check alsa on foxg20 target - fix ARM OABI support - fix watchdog for alix1c (mfgpt timers problem) diff --git a/package/vim/Makefile b/package/vim/Makefile index 1eabf5555..206c43dc8 100644 --- a/package/vim/Makefile +++ b/package/vim/Makefile @@ -5,7 +5,7 @@ include ${TOPDIR}/rules.mk PKG_NAME:= vim PKG_VERSION:= 7.3 -PKG_RELEASE:= 1 +PKG_RELEASE:= 2 PKG_MD5SUM:= 5b9510a17074e2b37d8bb38ae09edbf2 PKG_DESCR:= The text editor PKG_SECTION:= editor @@ -58,6 +58,9 @@ XAKE_FLAGS+= prefix=/usr \ post-install: ${INSTALL_DIR} ${IDIR_VIM}/usr/bin + ${INSTALL_DIR} ${IDIR_VIM}/usr/share/vim ${CP} ${WRKINST}/usr/bin/{ex,vim,view} ${IDIR_VIM}/usr/bin + ${CP} ${WRKINST}/usr/share/vim/vim73/vimrc_example.vim \ + ${IDIR_VIM}/usr/share/vim/vimrc include ${TOPDIR}/mk/pkg-bottom.mk |