Guest User

Untitled

a guest
Jun 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. grammar Debian
  2. rule collection
  3. entry+
  4. end
  5. rule entry
  6. (tag space value)
  7. end
  8.  
  9. rule package_details
  10. tag value &[^$]
  11. end
  12. rule tag
  13. [A-Za-z0-9\-]+ ":"
  14. end
  15. rule value
  16. (!tag value_line+ "\n")+
  17. end
  18. rule value_line
  19. ([A-Za-z0-9 <>@()=\.\-|/,_"':])+
  20. end
  21. rule space
  22. [ \t]+
  23. end
  24. end
Add Comment
Please, Sign In to add comment