2007-01-16 00:08:17 +01:00
|
|
|
#
|
2011-09-22 14:08:46 +02:00
|
|
|
# spec file for package cups-backends
|
2007-01-16 00:08:17 +01:00
|
|
|
#
|
2014-03-28 12:58:43 +01:00
|
|
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-16 00:08:17 +01:00
|
|
|
#
|
2009-05-29 00:51:44 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2007-01-16 00:08:17 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
Name: cups-backends
|
2011-09-22 14:08:46 +02:00
|
|
|
Summary: Additional Backends for CUPS
|
2012-02-14 15:44:04 +01:00
|
|
|
License: GPL-2.0
|
2007-01-16 00:08:17 +01:00
|
|
|
Group: Hardware/Printing
|
2014-03-28 12:58:43 +01:00
|
|
|
Version: 1.1
|
2012-02-14 15:44:04 +01:00
|
|
|
Release: 0
|
2014-03-28 12:58:43 +01:00
|
|
|
Source0: pipe
|
|
|
|
Source1: http://www.openprinting.org/download/files/beh
|
|
|
|
Source100: COPYING
|
2011-09-22 14:08:46 +02:00
|
|
|
Requires: cups
|
2014-03-28 12:58:43 +01:00
|
|
|
# Conflict with foomatic-filters because /usr/lib/cups/backend/beh is provided by it.
|
|
|
|
# Instead of foomatic-filters now cups-filters-foomatic-rip should be used.
|
|
|
|
# Because cups-filters-foomatic-rip provides the RPM capability "foomatic-filters"
|
|
|
|
# there cannot be an unversioned conflict with foomatic-filters here
|
|
|
|
# (otherwise cups-backends would conflict with cups-filters-foomatic-rip).
|
|
|
|
# Because cups-filters-foomatic-rip provides at least "foomatic-filters = 4.0.17.256.1"
|
|
|
|
# (see cups-filters.spec) and because we will not upgrade the foomatic-filters package
|
|
|
|
# (its current version is 4.0.12) a conflict with foomatic-filters < 4.0.17.256 is used
|
|
|
|
# to let cups-backends only conflict with the old foomatic-filters package
|
|
|
|
# but not with the new cups-filters-foomatic-rip package:
|
|
|
|
Conflicts: foomatic-filters < 4.0.17.256
|
|
|
|
# According to RPMLINT:
|
|
|
|
# "The package should be of the noarch architecture because it doesn't contain any binaries."
|
|
|
|
BuildArch: noarch
|
2007-01-16 00:08:17 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
|
|
|
%description
|
|
|
|
This package contains free additional backends for CUPS.
|
|
|
|
|
|
|
|
%prep
|
2014-03-28 12:58:43 +01:00
|
|
|
# There is nothing to do here because Source0 and Source1 are installed directly from RPM_SOURCE_DIR.
|
2007-01-16 00:08:17 +01:00
|
|
|
|
|
|
|
%build
|
2014-03-28 12:58:43 +01:00
|
|
|
# There is nothing to build because Source0 is a Bash script and Source1 is a Perl script.
|
|
|
|
# At least test if the syntax is o.k.:
|
|
|
|
bash -n ${RPM_SOURCE_DIR}/pipe
|
|
|
|
perl -c ${RPM_SOURCE_DIR}/beh &>/dev/null
|
2007-01-16 00:08:17 +01:00
|
|
|
|
|
|
|
%install
|
2011-09-22 14:08:46 +02:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/usr/lib/cups/backend
|
2014-03-28 12:58:43 +01:00
|
|
|
# Source0: cups-pipe.sh
|
|
|
|
install -m 755 ${RPM_SOURCE_DIR}/pipe $RPM_BUILD_ROOT/usr/lib/cups/backend/pipe
|
|
|
|
# Source1: beh
|
|
|
|
install -m 755 ${RPM_SOURCE_DIR}/beh $RPM_BUILD_ROOT/usr/lib/cups/backend/beh
|
2007-01-16 00:08:17 +01:00
|
|
|
|
|
|
|
%files
|
2014-03-28 12:58:43 +01:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc ${RPM_SOURCE_DIR}/COPYING
|
2011-09-22 14:08:46 +02:00
|
|
|
%dir /usr/lib/cups
|
|
|
|
%dir /usr/lib/cups/backend
|
|
|
|
/usr/lib/cups/backend/pipe
|
2014-03-28 12:58:43 +01:00
|
|
|
/usr/lib/cups/backend/beh
|
2007-01-16 00:08:17 +01:00
|
|
|
|
2007-07-30 20:53:31 +02:00
|
|
|
%changelog
|