Commit 02ab0bdc authored by Olivier Schonken's avatar Olivier Schonken Committed by Thomas Petazzoni
Browse files

package/qpdf: New package qpdf 5.1.2



[Thomas:
  - adjust length of comment header in .mk file.
  - fix comment in Config.in to match what's specific in the Buildroot
    manual.
  - fix <pkg>_LICENSE to 'Artistic-2.0'.]

Signed-off-by: default avatarOlivier Schonken <olivier.schonken@gmail.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 0cd238ff
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1077,6 +1077,7 @@ menu "Miscellaneous"
	source "package/haveged/Config.in"
	source "package/mcrypt/Config.in"
	source "package/mobile-broadband-provider-info/Config.in"
	source "package/qpdf/Config.in"
	source "package/qemu/Config.in"
	source "package/shared-mime-info/Config.in"
	source "package/snowball-init/Config.in"

package/qpdf/Config.in

0 → 100644
+17 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_QPDF
	bool "qpdf"
	depends on BR2_INSTALL_LIBSTDCPP
	select BR2_PACKAGE_PCRE
	select BR2_PACKAGE_ZLIB
	help
	  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.

	  http://qpdf.sourceforge.net/

comment "qpdf needs a toolchain w/ C++"
	depends on !BR2_INSTALL_LIBSTDCPP

package/qpdf/qpdf.hash

0 → 100644
+2 −0
Original line number Diff line number Diff line
# Downloaded from http://sourceforge.net/projects/qpdf/files/qpdf/5.1.2/
md5	0bd15ef5eea5f628951ab456c84e78ec  qpdf-5.1.2.tar.gz

package/qpdf/qpdf.mk

0 → 100644
+16 −0
Original line number Diff line number Diff line
################################################################################
#
# qpdf
#
################################################################################

QPDF_VERSION = 5.1.2
QPDF_SITE = http://downloads.sourceforge.net/project/qpdf/qpdf/$(QPDF_VERSION)
QPDF_INSTALL_STAGING = YES
QPDF_LICENSE = Artistic-2.0
QPDF_LICENSE_FILES = Artistic-2.0
QPDF_DEPENDENCIES = pcre zlib

QPDF_CONF_OPTS = --without-random

$(eval $(autotools-package))