control 1.1 KB

1234567891011121314151617181920212223242526
  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.2.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 (>= 10~),
  8. Priority: optional
  9. Section: perl
  10. Package: libregexp-wildcards-perl
  11. Architecture: all
  12. Depends: ${misc:Depends}, ${perl:Depends},
  13. Description: converts wildcard expressions to Perl regular expressions
  14. In many situations, users may want to specify patterns to match but
  15. don't need the full power of regexps. Wildcards make one of those sets
  16. of simplified rules. Regexp::Wildcards converts wildcard expressions
  17. to Perl regular expressions, so that you can use them for matching.
  18. .
  19. It handles the * and ? wildcards, as well as Unix bracketed
  20. alternatives {,}, but also % and _ SQL wildcards. If required, it can
  21. also keep original (...) groups or ^ and $ anchors. Backslash (\) is
  22. used as an escape character.
  23. .
  24. Typesets that mimic the behaviour of Windows and Unix shells are also
  25. provided.