pmaports-a71/main/postmarketos-dev/postmarketos-dev.post-install
Caleb Connolly 7f3e832574
main/postmarketos-dev: new aport (MR 5180)
This package is meant to encompass what an average developer would want
from a postmarketOS image. We plan to provide -dev variants of some
postmarketOS images for some devices for use by the Linux mobile
developer community. These should include useful tools out of the box
and provide a familiar shell and coreutils.

Signed-off-by: Caleb Connolly <caleb@postmarketos.org>
[ci:skip-build]: already built successfully in CI
2024-09-28 12:29:33 +02:00

7 lines
135 B
Bash

#!/bin/sh
if [ ! -e /usr/local/bin/vim ]; then
echo "Installing vim -> neovim symlink..."
ln -s /usr/bin/nvim /usr/local/bin/vim
fi