mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
eb94320ada
* +vim.org * vi is exported by default * add make * add dependencies * test manually added version * add tea.xyz/gx/cc * symlink vim -> vi in linux-x86 * fix symlink to bin * cleanup test * try w/o -T * test solution from https://bugzilla.redhat.com/show_bug.cgi\?id\=1969936 --------- Co-authored-by: neil <neil@neils-MacBook-Pro.local>
51 lines
1.1 KiB
YAML
51 lines
1.1 KiB
YAML
distributable:
|
|
url: https://github.com/vim/vim/archive/refs/tags/v{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
- 9.0.1294
|
|
|
|
provides:
|
|
- bin/vim
|
|
- bin/vi
|
|
|
|
dependencies:
|
|
python.org: '>=3.11'
|
|
lua.org: '>=5.4'
|
|
invisible-island.net/ncurses: '>=6.3'
|
|
perl.org: '>=5.36'
|
|
ruby-lang.org: '>=3.2'
|
|
build:
|
|
dependencies:
|
|
gnu.org/make: ^4.3
|
|
tea.xyz/gx/cc: ^0.1
|
|
script: |
|
|
./configure \
|
|
--prefix={{prefix}} \
|
|
--enable-multibyte \
|
|
--with-tlib=ncurses \
|
|
--with-compiledby=tea.xyz \
|
|
--enable-cscope \
|
|
--enable-terminal \
|
|
--enable-perlinterp \
|
|
--enable-rubyinterp \
|
|
--enable-python3interp \
|
|
--disable-gui \
|
|
--without-x \
|
|
--enable-luainterp
|
|
make
|
|
make install prefix={{prefix}}
|
|
if test "{{hw.platform}}+{{hw.arch}}" = "linux+x86-64"; then
|
|
cd {{prefix}}/bin
|
|
ln -s vim vi
|
|
fi
|
|
test:
|
|
script: |
|
|
vim --version
|
|
vi --version
|
|
echo "hello world" >> ./test.txt
|
|
echo ":s/hello/test/" >> ./commands.vim
|
|
echo ":wq" >> ./commands.vim
|
|
touch $HOME/.exrc
|
|
vim -T dumb -S ./commands.vim ./test.txt
|
|
test "$(cat ./test.txt)" = "test world" |