README 619 B

12345678910111213141516171819
  1. # Application for build server which append strings to System/Rsrc/Strings.odc.
  2. # Used by http://blackbox.oberon.org in BlackBox CI system.
  3. # Installation for Linux
  4. # 1. Prepare Interp version of BlackBox in "Linux_Interp" folder:
  5. cd ../../BlackBox
  6. ./switch-target `uname -s` Interp
  7. ./build
  8. ./export ../Linux_Interp
  9. # 2. Compile this example:
  10. cd ../examples/append
  11. echo "DevCompiler.CompileThis Init" | ./runc
  12. # 3. For demonstration run:
  13. FILEPATH='System/Rsrc' FILENAME='Strings.odc' KEY='test' VALUE='1' ./runc
  14. # Then check System/Rsrc/Strings.odc. It will contain the string with key and value in the last line.