mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-12-16 02:08:54 +00:00
3847522faa
release notes: - https://www.vim.org/vim-9.1-released.php
56 lines
1.8 KiB
Makefile
56 lines
1.8 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="vim"
|
|
PKG_VERSION="9.1.0"
|
|
PKG_SHA256="ddb435f6e386c53799a3025bdc5a3533beac735a0ee596cb27ada97366a1c725"
|
|
PKG_LICENSE="VIM"
|
|
PKG_SITE="http://www.vim.org/"
|
|
PKG_URL="https://github.com/vim/vim/archive/v${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain ncurses"
|
|
PKG_LONGDESC="Vim is a highly configurable text editor built to enable efficient text editing."
|
|
PKG_BUILD_FLAGS="-sysroot"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="vim_cv_getcwd_broken=no \
|
|
vim_cv_memmove_handles_overlap=yes \
|
|
vim_cv_stat_ignores_slash=yes \
|
|
vim_cv_terminfo=yes \
|
|
vim_cv_tgetent=zero \
|
|
vim_cv_toupper_broken=no \
|
|
vim_cv_tty_group=world \
|
|
vim_cv_tty_mode=0620 \
|
|
ac_cv_sizeof_int=4 \
|
|
ac_cv_small_wchar_t=no \
|
|
--datarootdir=/storage/.kodi/addons/virtual.system-tools/data \
|
|
--disable-canberra \
|
|
--disable-nls \
|
|
--enable-selinux=no \
|
|
--enable-gui=no \
|
|
--with-compiledby=LibreELEC \
|
|
--with-features=huge \
|
|
--with-tlib=ncurses \
|
|
--without-x"
|
|
|
|
PKG_MAKEINSTALL_OPTS_TARGET=VIMRTDIR=
|
|
|
|
pre_configure_target() {
|
|
cd ..
|
|
rm -rf .${TARGET_NAME}
|
|
}
|
|
|
|
make_target() {
|
|
:
|
|
}
|
|
|
|
pre_makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/bin
|
|
}
|
|
|
|
post_makeinstall_target() {
|
|
(
|
|
cd ${INSTALL}/storage/.kodi/addons/virtual.system-tools/data/vim
|
|
rm -r doc tutor gvimrc_example.vim
|
|
mv vimrc_example.vim vimrc
|
|
)
|
|
}
|