Advertisement
tinyevil

Untitled

Dec 8th, 2017
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. == Data scheme
  2. (module
  3. name = bubble.string
  4. version = bubble.string
  5.  
  6. sources = (
  7. (source-path
  8. path=bubble.string
  9. flags=(bubble.string)
  10. )
  11. )
  12.  
  13. dependencies = (
  14. (dependency
  15. name=bubble.string
  16. version=bubble.string
  17. )
  18. )
  19. )
  20.  
  21. == Matching data
  22. (module
  23. name = "showcase"
  24. version = "0.0.1"
  25.  
  26. sources = (
  27. (source-path path="src")
  28. (source-path path="vendor-src" flags=("-O2" "-Wall"))
  29. )
  30.  
  31. dependencies = (
  32. (dependency name="base" version="1.0+")
  33. (dependency name="foo" version="1.1.2")
  34. (dependency name="bar" version="0.3")
  35. )
  36. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement