# # Copyright (C) 2006-2009 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:=sane-backends PKG_VERSION:=1.0.20 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=ftp://ftp.sane-project.org/pub/sane/$(PKG_NAME)-$(PKG_VERSION)/ PKG_MD5SUM:=a0cfdfdebca2feb4f2ba5d3418b15a42 include $(INCLUDE_DIR)/package.mk define Package/sane-backends/Default TITLE:=Scanner Access Now Easy URL:=http://www.sane-project.org/ endef define Package/sane-backends/Default/description SANE (Scanner Access Now Easy) is a universal scanner interface. endef define Package/sane-backends $(call Package/sane-backends/Default) SECTION:=utils CATEGORY:=Utilities DEPENDS:=+sane-libs TITLE+= (backends) endef define Package/sane-backends/description $(call Package/sane-backends/Default/description) This package contains the SANE daemon. endef define Package/sane-libs $(call Package/sane-backends/Default) SECTION:=libs CATEGORY:=Libraries DEPENDS:=+libjpeg +libpthread +libusb TITLE+= (libraries) endef define Package/sane-libs/description $(call Package/sane-backends/Default/description) This package contains the SANE shared libraries. endef define Package/sane-frontends $(call Package/sane-backends/Default) SECTION:=utils CATEGORY:=Utilities DEPENDS:=+sane-backends TITLE+= (frontends) endef define Package/sane-frontends/description $(call Package/sane-backends/Default/description) This package contains the SANE frontends. endef CONFIGURE_ARGS+= \ --enable-shared \ --enable-static \ --disable-translations \ --without-gphoto2 \ --disable-debug \ define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ DESTDIR="$(PKG_INSTALL_DIR)" \ all install endef define Package/sane-backends/conffiles /etc/sane.d/saned.conf endef define Package/sane-backends/install $(INSTALL_DIR) $(1)/etc/sane.d $(INSTALL_CONF) $(PKG_INSTALL_DIR)/etc/sane.d/*.conf $(1)/etc/sane.d/ $(INSTALL_DIR) $(1)/usr/sbin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/ endef define Package/sane-libs/install $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libsane.so.* $(1)/usr/lib/ $(INSTALL_DIR) $(1)/usr/lib/sane $(CP) $(PKG_INSTALL_DIR)/usr/lib/sane/libsane-*.so.* $(1)/usr/lib/sane/ endef define Package/sane-frontends/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/ endef define Build/InstallDev mkdir -p $(1)/usr/include $(CP) $(PKG_INSTALL_DIR)/usr/include/sane $(1)/usr/include/ mkdir -p $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libsane.{a,so*} $(1)/usr/lib/ endef $(eval $(call BuildPackage,sane-backends)) $(eval $(call BuildPackage,sane-libs)) $(eval $(call BuildPackage,sane-frontends))