blob: 8c8cbc5622ba30dd1c08fa38ef88a4eb2733fa0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
External package containing pdfium.
"Insert -> Picture -> From File..." uses this library when a PDF file is
selected.
https://pdfium.googlesource.com/pdfium/
How to update the tarball:
version=$(git for-each-ref|grep chromium/|tail -n 1|sed 's|.*/||')
git archive --prefix=pdfium/ --format=tar origin/chromium/${version} > pdfium-${version}.tar
bzip2 pdfium-${version}.tar
|