I orphaned the package since I don't use it anymore. @bartus, feel free to adopt it.
Search Criteria
Package Details: vim-largefile 4-3
Package Actions
| Package Base: | vim-largefile |
|---|---|
| Description: | A vim plugin to work with large files |
| Upstream URL: | http://www.vim.org/scripts/script.php?script_id=1506 |
| Category: | editors |
| Licenses: | |
| Submitter: | djszapi |
| Maintainer: | None |
| Last Packager: | None |
| Votes: | 8 |
| First Submitted: | 2009-07-17 23:09 |
| Last Updated: | 2011-03-28 11:43 |
Latest Comments
Comment by vimes656
Comment by bartus
script version 5 is available
update _scriptid to 21106
Comment by vimes656
@iamcraig I've updated it. Thanks for the fix.
Anonymous comment
The 'build' function in the PKGBUILD includes the following line:
install -m644 doc/* ${pkgdir}/usr/share/vim/vimfiles/doc/ || return 1
After building via Vimball, the src/doc directory includes a 'tags' file, which is picked up by the aforementioned line, causing a file collision when installing the package.
To prevent this collision, I changed the line to:
install -m644 doc/*.txt ${pkgdir}/usr/share/vim/vimfiles/doc/ || return 1
('vimdoc.install' will create the appropriate, updated system 'tags' file following installation.)
thanks