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

package/ijs: New package ijs 0.35



[Thomas:
  - Add BR2_USE_MMU dependency, since fork() is used.
  - Put <pkg>_SOURCE next to <pkg>_VERSION and <pkg>_SITE.
  - Improve comment about why autoreconf is needed.
  - Change the location in menuconfig of the package, "Networking
    applications" didn't seem like an appropriate location.]

Signed-off-by: default avatarOlivier Schonken <olivier.schonken@gmail.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 02ab0bdc
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -727,6 +727,7 @@ menu "Graphics"
	source "package/giblib/Config.in"
	source "package/giflib/Config.in"
	source "package/harfbuzz/Config.in"
	source "package/ijs/Config.in"
	source "package/imlib2/Config.in"
	source "package/jasper/Config.in"
	source "package/jpeg/Config.in"

package/ijs/Config.in

0 → 100644
+8 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_IJS
	bool "ijs"
	depends on BR2_USE_MMU # fork()
	help
	  The IJS package contains a library which implements a
	  protocol for transmission of raster page images.

	  http://www.openprinting.org/

package/ijs/ijs.hash

0 → 100644
+2 −0
Original line number Diff line number Diff line
# Locally computed:
sha256	11a5f5084488c480f3ff5a24d64d7147bb64272bf60a0ba51330a56c5b50cab9  ijs-0.35.tar.bz2

package/ijs/ijs.mk

0 → 100644
+17 −0
Original line number Diff line number Diff line
################################################################################
#
# ijs
#
################################################################################

IJS_VERSION = 0.35
IJS_SOURCE = ijs-$(IJS_VERSION).tar.bz2
IJS_SITE = http://www.openprinting.org/download/ijs/download
IJS_LICENSE = MIT
IJS_LICENSE_FILES = README
# Buildroot libtool patch does not apply, so we autoreconf the
# package.
IJS_AUTORECONF = YES
IJS_INSTALL_STAGING = YES

$(eval $(autotools-package))