File: control

package info (click to toggle)
libcss-minifier-perl 0.01-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 100 kB
  • sloc: perl: 189; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 1,484 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Source: libcss-minifier-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 11)
Build-Depends-Indep: perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Florian Schlichting <fsfs@debian.org>
Standards-Version: 4.1.4
Homepage: https://metacpan.org/release/CSS-Minifier
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libcss-minifier-perl.git
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libcss-minifier-perl
Testsuite: autopkgtest-pkg-perl

Package: libcss-minifier-perl
Architecture: all
Depends: ${misc:Depends}, ${perl:Depends}
Description: Perl extension for minifying CSS
 CSS::Minifier removes unnecessary whitespace from CSS. The primary
 requirement developing this module is to not break working stylesheets: if
 working CSS is in input then working CSS is output. The Mac/Internet Explorer
 comment hack will be minimized but not stripped and so will continue to
 function.
 .
 This module understands space, horizontal tab, new line, carriage return, and
 form feed characters to be whitespace. Any other characters that may be
 considered whitespace are not minimized. These other characters include
 paragraph separator and vertical tab.
 .
 For static CSS files, it is recommended that you minify during the build
 stage of web deployment. If you minify on-the-fly then it might be a good
 idea to cache the minified file. Minifying static files on-the-fly repeatedly
 is wasteful.