diff options
author | raveit65 <[email protected]> | 2016-06-23 13:29:07 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-06-24 13:45:05 +0200 |
commit | 4e2cf26a825b5c8d30f6a84227a1f4d279928859 (patch) | |
tree | d856a8dca9ba216a2f35f688be4264c5b500acf7 /cut-n-paste/synctex/update-synctex-from-TL.sh | |
parent | 121517e184d90c7f36e6431f92bb778ba229c010 (diff) | |
download | atril-4e2cf26a825b5c8d30f6a84227a1f4d279928859.tar.bz2 atril-4e2cf26a825b5c8d30f6a84227a1f4d279928859.tar.xz |
cut-n-paste: Update synctex parser to version 1.16
and add missing files from gnome git for better sync to higher version
Fixes bug 651263.https://bugzilla.gnome.org/show_bug.cgi?id=651263
Taken from:
https://git.gnome.org/browse/evince/commit/?id=05a78e3
Diffstat (limited to 'cut-n-paste/synctex/update-synctex-from-TL.sh')
-rw-r--r-- | cut-n-paste/synctex/update-synctex-from-TL.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cut-n-paste/synctex/update-synctex-from-TL.sh b/cut-n-paste/synctex/update-synctex-from-TL.sh new file mode 100644 index 00000000..ca0e10bf --- /dev/null +++ b/cut-n-paste/synctex/update-synctex-from-TL.sh @@ -0,0 +1,15 @@ +#!/bin/sh +# update-synctex-from-TL.sh +# +# Get latest synctex parser from TexLive SVN repository. +SVN_URI=svn://tug.org/texlive/trunk/Build/source/texk/web2c/synctexdir +SCRIPT_NAME=update-synctex-from-TL.sh +FILES="synctex_parser_version.txt synctex_parser.c synctex_parser.h synctex_parser_local.h synctex_parser_utils.c synctex_parser_utils.h" + + echo "Obtaining latest version of the sources" + for FILE in $FILES + do + svn export $SVN_URI/$FILE + done + + |