1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
# Sample configuration file for rebuild frontend
# Run with "ben rebuild ocaml.ben". With default settings, this
# should be run after a download run.
architectures = [ "amd64" ];
is_affected = .maintainer ~ /debian-ocaml-maint/
| .build-depends ~ /ocaml/
| .build-depends-arch ~ /ocaml/
| .build-depends-indep ~ /ocaml/;
# In this example, always fail. This outputs the full dependency
# graph.
rebuild_command = "false";
check_command = "false";
stop_command = "false";
promote_command = "true";
update_command = "true";
|