# Maintainer: MGislv # Contributor: mesmer # Contributor: xiretza # Contributor: TJM # Directly based off of the official package pkgname=vim-clipboard pkgver=9.0.1736 pkgrel=1 pkgdesc='Vi Improved, a highly configurable, improved version of the vi text editor' url='https://www.vim.org' arch=('x86_64') license=('custom:vim') depends=('vim-runtime' 'gpm' 'acl' 'glibc' 'libxt' 'libgcrypt' 'zlib' 'perl') makedepends=('glibc' 'libgcrypt' 'gpm' 'python' 'ruby' 'libxt' 'lua' 'gawk' 'tcl' 'zlib') optdepends=('python: Python language support' 'ruby: Ruby language support' 'lua: Lua language support' #'perl: Perl language support' 'tcl: Tcl language support') conflicts=('vim' 'gvim' 'vim-minimal') provides=('xxd' 'vim' 'vim-minimal' 'vim-plugin-runtime') replaces=('vim' 'vim-minimal' 'gvim') source=(https://github.com/vim/vim/archive/v${pkgver}/vim-${pkgver}.tar.gz) sha512sums=('4ab23b5fea77065e1415d3e73106029eb2037f563ba5fbc64efe2605da0c03a1a279928c448d2010153b4624eb834dd83d2090c70301ef63b5cb904d08ae7455') prepare() { cd vim-${pkgver}/src # define the place for the global vimrc file (set to /etc/vimrc) sed -E 's|^.*(#define SYS_.*VIMRC_FILE.*").*$|\1|g' -i feature.h sed -E 's|^.*(#define VIMRC_FILE.*").*$|\1|g' -i feature.h autoconf } build() { cd vim-${pkgver} ./configure \ --prefix=/usr \ --localstatedir=/var/lib/vim \ --with-features=huge \ --with-compiledby='Arch Linux' \ --enable-gpm \ --enable-acl \ --with-x=yes \ --disable-gui \ --enable-multibyte \ --enable-cscope \ --enable-netbeans \ --enable-perlinterp=dynamic \ --enable-python3interp=dynamic \ --enable-rubyinterp=dynamic \ --enable-luainterp=dynamic \ --enable-tclinterp=dynamic \ --disable-canberra make } package() { cd vim-${pkgver} make -j1 VIMRCLOC=/etc DESTDIR="${pkgdir}" install # provided by (n)vi in core rm "${pkgdir}"/usr/bin/{ex,view} # delete some manpages find "${pkgdir}"/usr/share/man -type d -name 'man1' 2>/dev/null | \ while read _mandir; do cd "${_mandir}" rm -f ex.1 view.1 # provided by (n)vi rm -f evim.1 # this does not make sense if we have no GUI done # Runtime provided by runtime package rm -r "${pkgdir}"/usr/share/vim # remove gvim.desktop as not included rm "${pkgdir}"/usr/share/applications/gvim.desktop # license install -Dm 644 runtime/doc/uganda.txt \ "${pkgdir}"/usr/share/licenses/${pkgname}/license.txt } # vim: ts=2 sw=2 et: