OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CSS-Squish?expand=0&rev=5
78 lines
2.5 KiB
RPMSpec
78 lines
2.5 KiB
RPMSpec
#
|
|
# spec file for package perl-CSS-Squish
|
|
#
|
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
|
|
Name: perl-CSS-Squish
|
|
Version: 0.10
|
|
Release: 1
|
|
License: GPL+ or Artistic
|
|
%define cpan_name CSS-Squish
|
|
Summary: Compact many CSS files into one big file
|
|
Url: http://search.cpan.org/dist/CSS-Squish/
|
|
Group: Development/Libraries/Perl
|
|
Source: http://www.cpan.org/authors/id/T/TS/TSIBLEY/%{cpan_name}-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(Test::LongString)
|
|
BuildRequires: perl(URI)
|
|
BuildRequires: perl(URI::file)
|
|
Requires: perl(URI)
|
|
Requires: perl(URI::file)
|
|
%{perl_requires}
|
|
|
|
%description
|
|
This module takes a list of CSS files and concatenates them, making sure to
|
|
honor any valid @import statements included in the files.
|
|
|
|
The benefit of this is that you get to keep your CSS as individual files,
|
|
but can serve it to users in one big file, saving the overhead of possibly
|
|
dozens of HTTP requests.
|
|
|
|
Following the CSS 2.1 spec, @import statements must be the first rules in a
|
|
CSS file. Media-specific @import statements will be honored by enclosing
|
|
the included file in an @media rule. This has the side effect of actually
|
|
_improving_ compatibility in Internet Explorer, which ignores
|
|
media-specific @import rules but understands @media rules.
|
|
|
|
It is possible that future versions will include methods to compact
|
|
whitespace and other parts of the CSS itself, but this functionality is not
|
|
supported at the current time.
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
%build
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
%check
|
|
%{__make} test
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%files -f %{name}.files
|
|
%defattr(-,root,root,755)
|
|
%doc CHANGES README
|
|
|
|
%changelog
|