Skip to content
Permalink
726b4877f9
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 46 lines (34 sloc) 872 Bytes
#!/usr/bin/env beesh
# BEE_VERSION vim-8.2.2787-2
# SRCURL[0]="https://github.com/vim/vim/archive/v${PKGVERSION}.tar.gz vim-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/e6e255149477470a3ed316bb16927376/vim-8.2.2787.tar.gz"
# PATCHURL+=()
build_in_sourcedir
BEE_BUILDTYPE=autotools
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure() {
start_cmd ${S}/configure --prefix=${PREFIX} \
--enable-multibyte \
--enable-luainterp=dynamic \
--enable-pythoninterp=dynamic \
--enable-python3interp=dynamic \
--enable-rubyinterp=dynamic \
--disable-nls
}
#mee_build() {
# bee_build
#}
#mee_install() {
# bee_install
#}
mee_install_post() {
for i in vi; do
ln -sv vim ${D}${BINDIR}/$i
done
ln -sv vim.1 ${D}${MANDIR}/man1/vi.1
}