94d0cfb239
SVN-Revision: 35388
81 lines
2.0 KiB
Makefile
81 lines
2.0 KiB
Makefile
#
|
|
# Copyright (C) 2006-2011 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:=hplip
|
|
PKG_VERSION:=3.9.12
|
|
PKG_RELEASE:=4
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=@SF/hplip
|
|
PKG_MD5SUM:=2b0906b4a57b437988829557ca62adfd
|
|
|
|
PKG_BUILD_DEPENDS := python
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/hplip
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=HP Linux Imaging and Printing
|
|
URL:=http://sourceforge.net/projects/hplip/
|
|
DEPENDS+=+libjpeg +libtiff +libusb-compat +cups +sane-libs
|
|
endef
|
|
|
|
define Package/hplip/description
|
|
HPLIP is an HP developed solution for printing, scanning, and faxing with HP inkjet and laser based printers in Linux.
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--disable-gui-build \
|
|
--disable-network-build \
|
|
--disable-fax-build \
|
|
--disable-pp-build \
|
|
--disable-doc-build \
|
|
--disable-foomatic-xml-install \
|
|
--disable-dbus-build
|
|
|
|
define Build/Configure
|
|
$(call Build/Configure/Default,\
|
|
$(CONFIGURE_ARGS),\
|
|
ac_cv_lib_cups_cupsDoFileRequest=yes \
|
|
LIBS="-lz -ljpeg -lusb -lcups -lpng -ltiff" \
|
|
)
|
|
endef
|
|
|
|
define Package/hplip/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_BUILD_DIR)/.libs/libhpip.so* $(1)/usr/lib/
|
|
$(CP) $(PKG_BUILD_DIR)/.libs/libhpmud.so* $(1)/usr/lib/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/cups/backend
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/.libs/hp $(1)/usr/lib/cups/backend
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/sane
|
|
$(CP) $(PKG_BUILD_DIR)/.libs/libsane-hpaio.so* $(1)/usr/lib/sane
|
|
|
|
$(INSTALL_DIR) $(1)/etc/hp
|
|
$(CP) $(PKG_BUILD_DIR)/hplip.conf $(1)/etc/hp/hplip.conf
|
|
|
|
$(INSTALL_DIR) $(1)/usr/share/hplip/data/models/
|
|
$(CP) $(PKG_BUILD_DIR)/data/models/models.dat $(1)/usr/share/hplip/data/models/
|
|
|
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/usb/
|
|
$(INSTALL_BIN) ./files/20-hplip $(1)/etc/hotplug.d/usb/
|
|
|
|
$(INSTALL_DIR) $(1)/etc/sane.d/dll.d/
|
|
$(INSTALL_DATA) ./files/hplib.conf $(1)/etc/sane.d/dll.d/hplib
|
|
endef
|
|
|
|
define Package/hplip/conffiles
|
|
/etc/hp/hplip.conf
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,hplip))
|