File: control

package info (click to toggle)
peg 0.1.20%2Breally0.1.18-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 528 kB
  • sloc: ansic: 3,271; makefile: 165; sh: 3
file content (23 lines) | stat: -rw-r--r-- 827 bytes parent folder | download
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.