c6bdf67f88
Version 0.5.4 is from 2009-05-29. Version 1.2 is from 2012-11-27. Signed-off-by: Francisco Borges <francisco.borges@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/packages@35697 3c298f89-4303-0410-b956-a3cf2f4a3e73
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=cups-bjnp
|
|
PKG_VERSION:=1.2
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=@SF/cups-bjnp
|
|
PKG_MD5SUM:=8672b4585b71dee6dcefa00fbbbe7698
|
|
|
|
PKG_BUILD_DEPENDS:=cups
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/cups-bjnp
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=Printing
|
|
TITLE:=BJNP protocol backend for CUPS
|
|
URL:=http://sourceforge.net/projects/cups-bjnp/
|
|
DEPENDS:=cups
|
|
endef
|
|
|
|
define Package/cups-bjnp/description
|
|
CUPS backend for the canon printers using the proprietary USB over
|
|
IP BJNP protocol. This backend allows Cups to print over the network
|
|
to a Canon printer. It currently supports Cups 1.2 and Cups 1.3 and
|
|
is designed by reverse engineering.
|
|
endef
|
|
|
|
CONFIGURE_ARGS += --with-cupsbackenddir=$(STAGING_DIR)/usr/include/cups
|
|
|
|
TARGET_CFLAGS+=-Wl,-rpath-link=$(STAGING_DIR)/usr/lib
|
|
|
|
define Package/cups-bjnp/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/cups/backend
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/bjnp $(1)/usr/lib/cups/backend
|
|
endef
|
|
|
|
|
|
$(eval $(call BuildPackage,cups-bjnp))
|