control 1.1 KB

123456789101112131415161718192021222324252627
  1. Source: libregexp-wildcards-perl
  2. Maintainer: Christoph Biedl <debian.axhn@manchmal.in-ulm.de>
  3. Homepage: https://metacpan.org/release/Regexp-Wildcards
  4. Standards-Version: 4.6.1
  5. Vcs-Browser: https://git.in-ulm.de/cbiedl/libregexp-wildcards-perl
  6. Vcs-Git: https://git.in-ulm.de/cbiedl/libregexp-wildcards-perl.git
  7. Build-Depends: debhelper-compat (= 13),
  8. Priority: optional
  9. Rules-Requires-Root: no
  10. Section: perl
  11. Package: libregexp-wildcards-perl
  12. Architecture: all
  13. Depends: ${misc:Depends}, ${perl:Depends},
  14. Description: converts wildcard expressions to Perl regular expressions
  15. In many situations, users may want to specify patterns to match but
  16. don't need the full power of regexps. Wildcards make one of those sets
  17. of simplified rules. Regexp::Wildcards converts wildcard expressions
  18. to Perl regular expressions, so that you can use them for matching.
  19. .
  20. It handles the * and ? wildcards, as well as Unix bracketed
  21. alternatives {,}, but also % and _ SQL wildcards. If required, it can
  22. also keep original (...) groups or ^ and $ anchors. Backslash (\) is
  23. used as an escape character.
  24. .
  25. Typesets that mimic the behaviour of Windows and Unix shells are also
  26. provided.