You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
1.9 KiB
86 lines
1.9 KiB
# Package Maintainers
|
|
MAINTAINERS=("Evie Viau <evie@eviee.gay>")
|
|
|
|
# Package information
|
|
NAME="vim"
|
|
VERSION="8.2.4576"
|
|
EPOCH=0
|
|
DESC="A powerful, feature-rich text editor with a steep learning curve"
|
|
GRPS=()
|
|
URL="https://www.vim.org/"
|
|
LICENSES=("Vim")
|
|
DEPENDS=("acl" "glibc" "gpm" "libgcrypt" "pcre" "zlib")
|
|
OPT_DEPENDS=()
|
|
PROVIDES=("vim")
|
|
CONFLICTS=()
|
|
REPLACES=()
|
|
|
|
# Source information
|
|
SRC=("https://github.com/vim/vim/archive/refs/tags/v${VERSION}.tar.gz")
|
|
|
|
SUM_TYPE="sha512"
|
|
SUM=("4e74ac8a32c5938bd1f827be6945e080317b9be0a8c41b80fa695b00e851e5196755134b20082ba04339bc3d9025e3697a3ad10c2a0d2bc7c57ad2c996137b13")
|
|
|
|
# Prepare script
|
|
function prepare() {
|
|
cd "${WORKDIR}/${NAME}-${VERSION}"
|
|
|
|
# Move default configuration file to /etc/vim
|
|
echo '#define SYS_VIMRC_FILE "/etc/vimrc"' >> src/feature.h
|
|
|
|
./configure --prefix=/usr
|
|
|
|
return 0
|
|
}
|
|
|
|
# Build script
|
|
function build() {
|
|
cd "${WORKDIR}/${NAME}-${VERSION}"
|
|
|
|
make
|
|
|
|
# Binary data will be shown so we'll shove the output into a file
|
|
make -j1 check &> vim-test.log
|
|
|
|
return 0
|
|
}
|
|
|
|
# Post build script
|
|
function postbuild() {
|
|
cd "${WORKDIR}/${NAME}-${VERSION}"
|
|
|
|
DESTDIR="${BUILD_DATA_ROOT}" make install
|
|
|
|
# Add vi compatibility
|
|
ln -sv vim ${BUILD_DATA_ROOT}/usr/bin/vi
|
|
for L in ${BUILD_DATA_ROOT}/usr/share/man/{,*/}man1/vim.1; do
|
|
ln -sv vim.1 $(dirname $L)/vi.1
|
|
done
|
|
|
|
mkdir -pv ${BUILD_DATA_ROOT}/usr/share/doc/
|
|
|
|
ln -sv ../vim/vim82/doc ${BUILD_DATA_ROOT}/usr/share/doc/vim-${VERSION}
|
|
|
|
# Create default configuration file
|
|
mkdir -pv ${BUILD_DATA_ROOT}/etc
|
|
cat > ${BUILD_DATA_ROOT}/etc/vimrc << "EOF"
|
|
" Begin /etc/vimrc
|
|
|
|
" Ensure defaults are set before customizing settings, not after
|
|
source $VIMRUNTIME/defaults.vim
|
|
let skip_defaults_vim=1
|
|
|
|
set nocompatible
|
|
set backspace=2
|
|
set mouse=
|
|
syntax on
|
|
if (&term == "xterm") || (&term == "putty")
|
|
set background=dark
|
|
endif
|
|
|
|
" End /etc/vimrc
|
|
EOF
|
|
|
|
|
|
return 0
|
|
} |