X-Git-Url: https://git.ralfj.de/auto-debuild.git/blobdiff_plain/291cd1c2a6963f34d91fb16ef7fa7d33c2441c07..180623ecdb0fbe555d16e2ddbb0edc31185e1a1f:/auto_debuild.py diff --git a/auto_debuild.py b/auto_debuild.py index 7523e53..11845de 100755 --- a/auto_debuild.py +++ b/auto_debuild.py @@ -144,11 +144,18 @@ def pythonRules(config): ] return r +def noneRules(config): + r = RulesFile() + r.dh += ["--buildsystem=makefile"] # makefile does the last possible harm + r.rules['auto_build'] = [] + return r + # build systems buildSystems = { 'cmake': BuildSystem(cmakeRules, ["cmake"]), 'automake': BuildSystem(automakeRules), 'python': BuildSystem(pythonRules, ["python-setuptools"], ["${python:Depends}"]), + 'none': BuildSystem(noneRules), } # utility functions