Add 'vim-live-latex-preview/' from commit '3dc08dd76da2460667f5c60044a7e4ccefe1f719'
git-subtree-dir: vim-live-latex-preview git-subtree-mainline:9d01761fc1
git-subtree-split:3dc08dd76d
This commit is contained in:
commit
6de2fa2ef2
2 changed files with 39 additions and 0 deletions
16
vim-live-latex-preview/.SRCINFO
Normal file
16
vim-live-latex-preview/.SRCINFO
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
pkgbase = vim-live-latex-preview
|
||||||
|
pkgdesc = Vim plugin and helper scripts to provide a live-updating PDF preview of LaTeX documents with MuPDF
|
||||||
|
pkgver = 0.9
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://bbs.archlinux.org/viewtopic.php?id=107164
|
||||||
|
arch = any
|
||||||
|
license = GPL
|
||||||
|
depends = texlive-core
|
||||||
|
depends = vim
|
||||||
|
depends = xdotool
|
||||||
|
depends = mupdf
|
||||||
|
source = http://the21stcenturymonads.net/misc/vim-live-latex-preview-0.9.tar.gz
|
||||||
|
md5sums = 3a1d506673ba6c5556d502c0c9d4cdb3
|
||||||
|
|
||||||
|
pkgname = vim-live-latex-preview
|
||||||
|
|
23
vim-live-latex-preview/PKGBUILD
Normal file
23
vim-live-latex-preview/PKGBUILD
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
|
||||||
|
# Contributor: frabjous <klement at philos dot umass edu>
|
||||||
|
pkgname=vim-live-latex-preview
|
||||||
|
pkgver=0.9
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Vim plugin and helper scripts to provide a live-updating PDF preview of LaTeX documents with MuPDF"
|
||||||
|
arch=('any')
|
||||||
|
url="https://bbs.archlinux.org/viewtopic.php?id=107164"
|
||||||
|
license=('GPL')
|
||||||
|
depends=('texlive-core' 'vim' 'xdotool' 'mupdf')
|
||||||
|
source=(http://the21stcenturymonads.net/misc/${pkgname}-${pkgver}.tar.gz)
|
||||||
|
md5sums=('3a1d506673ba6c5556d502c0c9d4cdb3')
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${srcdir}"
|
||||||
|
install -d "${pkgdir}"/usr/share/vim/vimfiles/ftplugin/tex/
|
||||||
|
install -m 644 *.vim "${pkgdir}"/usr/share/vim/vimfiles/ftplugin/tex/
|
||||||
|
install -m 644 *.txt "${pkgdir}"/usr/share/vim/vimfiles/ftplugin/tex/
|
||||||
|
install -d "${pkgdir}"/usr/bin/
|
||||||
|
install -D -m 755 *.sh "${pkgdir}"/usr/bin/
|
||||||
|
}
|
||||||
|
|
||||||
|
# vim:set ts=2 sw=2 et:
|
Loading…
Reference in a new issue