Package Details: vim-syntastic-git 3.6.0_94_gb8682c3-1

Git Clone URL: https://aur.archlinux.org/vim-syntastic-git.git (read-only, click to copy)
Package Base: vim-syntastic-git
Description: Syntax checking hacks for vim
Upstream URL: https://github.com/scrooloose/syntastic
Licenses: WTFPLv2
Groups: vim-plugins
Conflicts: vim-syntastic
Provides: vim-syntastic
Submitter: lowfatcomputing
Maintainer: lowfatcomputing
Last Packager: lowfatcomputing
Votes: 30
Popularity: 0.000000
First Submitted: 2011-03-31 12:03 (UTC)
Last Updated: 2015-06-14 15:31 (UTC)

Required by (4)

Sources (1)

Latest Comments

1 2 Next › Last »

micwoj92 commented on 2021-07-06 00:26 (UTC)

I don't think it needs to depend on rake.

howardad commented on 2014-08-22 13:46 (UTC)

Thanks for the AURINFO!

gbc921 commented on 2014-08-20 13:00 (UTC)

@howardad I see. I kinda refuse to use this bundle installers (and lot of plugins) as I prefer the cleanest vim possible to be able to sit on other machine and still be familiar with a clean vim. Regarding pacman, as the files stay in /home it's not that big deal. When things go beyond that, then it starts to be an issue.

lowfatcomputing commented on 2014-08-20 00:24 (UTC)

@howardad I have uploaded a new package with the .AURINFO included.

howardad commented on 2014-08-19 22:05 (UTC)

@gbc921: If you're still wondering about pathogen, that is an alternative to pacman/AUR for installing vim plugins. Pathogen (and the other similar tools) is very easy to use, but then there are things installed on your system that pacman doesn't know about. Your call how much you care about that.

howardad commented on 2014-08-19 22:03 (UTC)

Please add AUR metadata to this package to stop pacaur's nagging. :)

gbc921 commented on 2014-05-08 20:39 (UTC)

Should this plugin be dependent of pathogen[1]? Or am I missing something? At least on GitHub install instructions[2], it is. [1]: https://aur.archlinux.org/packages/vim-pathogen-git/ [2]: https://github.com/scrooloose/syntastic#installation

lowfatcomputing commented on 2013-07-17 00:09 (UTC)

Thanks mmlb, for the fixed PKGBUILD.

ethail commented on 2013-07-09 11:29 (UTC)

does not build ==> GIT checkout done or server timeout ==> Starting make... Cloning into '/dev/shm/vim-syntastic-git/src/syntastic-build'... done. Checking connectivity... done mkdir: cannot create directory ?/dev/shm/vim-syntastic-git/pkg?: Permission denied mkdir: cannot create directory ?/dev/shm/vim-syntastic-git/pkg?: Permission denied mkdir: cannot create directory ?/dev/shm/vim-syntastic-git/pkg?: Permission denied mkdir: cannot create directory ?/dev/shm/vim-syntastic-git/pkg?: Permission denied However, mmlb's PKGBUILD does build.

mmlb commented on 2013-04-09 18:11 (UTC)

I edited the PKGBUILD to take advantage of makepkg-4.1's VCS abilities # Contributor: Andreas B. Wagner <AndreasBWagner@pointfree.net> awagner on irc.freenode.net pkgname=vim-syntastic-git pkgver=2.3.0_591_g0123297 pkgrel=1 pkgdesc="Syntax checking hacks for vim" arch=('any') url="https://github.com/scrooloose/syntastic" license=('WTFPLv2') groups=('vim-plugins') depends=('vim-runtime') makedepends=('git' 'rake') provides=('vim-syntastic') conflicts=('vim-syntastic') install=vimdoc.install source=(git://github.com/scrooloose/syntastic.git) sha1sums=(SKIP) pkgver() { cd syntastic echo $(git describe --tags | sed 's#-#_#g;s#v##') } package() { mkdir -p $pkgdir/usr/share/vim/vimfiles/{plugin,doc,autoload/syntastic/,syntax_checkers} cd "$srcdir/syntastic" cp -r plugin/* $pkgdir/usr/share/vim/vimfiles/plugin/ cp doc/syntastic.txt $pkgdir/usr/share/vim/vimfiles/doc/ cp autoload/syntastic/* $pkgdir/usr/share/vim/vimfiles/autoload/syntastic/ cp -r syntax_checkers/* $pkgdir/usr/share/vim/vimfiles/syntax_checkers/ } # vim:set ts=2 sw=2 et: