2015-03-22 22:12:50 +01:00
|
|
|
config BR2_PACKAGE_QPDF
|
|
|
|
bool "qpdf"
|
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
2020-02-29 14:01:30 +01:00
|
|
|
depends on BR2_USE_WCHAR
|
2019-12-22 11:49:28 +01:00
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11
|
2015-03-22 22:12:50 +01:00
|
|
|
select BR2_PACKAGE_ZLIB
|
2017-10-19 10:56:35 +02:00
|
|
|
select BR2_PACKAGE_JPEG
|
2015-03-22 22:12:50 +01:00
|
|
|
help
|
2017-12-18 09:21:05 +01:00
|
|
|
QPDF is a command-line program that does structural,
|
|
|
|
content- preserving transformations on PDF files. It could
|
|
|
|
have been called something like pdf-to-pdf. It also provides
|
|
|
|
many useful capabilities to developers of PDF-producing
|
|
|
|
software or for people who just want to look at the innards
|
|
|
|
of a PDF file to learn more about how they work.
|
2015-03-22 22:12:50 +01:00
|
|
|
|
|
|
|
http://qpdf.sourceforge.net/
|
|
|
|
|
2020-02-29 20:07:01 +01:00
|
|
|
comment "qpdf needs a toolchain w/ C++, wchar, gcc >= 4.7"
|
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
|
2019-12-22 11:49:28 +01:00
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
|