1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
  
     | 
    
      Source: peg
Section: devel
Priority: optional
Maintainer: Giulio Paci <giuliopaci@gmail.com>
Build-Depends: debhelper-compat (= 13)
Standards-Version: 4.7.0
Vcs-Git: https://salsa.debian.org/debian/peg.git
Vcs-Browser: https://salsa.debian.org/debian/peg
Homepage: https://piumarta.com/software/peg/
Rules-Requires-Root: no
Package: peg
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: recursive-descent parser generators for C
 This package provides peg and leg, two utilities that read a Parsing
 Expression Grammar (PEG) and generate a recursive-descent parser for
 it.
 .
 Unlike lex and yacc, peg and leg support unlimited backtracking,
 provide ordered choice as a means for disambiguation, and can combine
 scanning (lexical analysis) and parsing (syntactic analysis) into a
 single activity.
 
     |