From: Ralf Jung Date: Fri, 12 Oct 2012 18:26:54 +0000 (+0200) Subject: Add dummy ('none') build system for packages only containing a bunch of static files X-Git-Url: https://git.ralfj.de/auto-debuild.git/commitdiff_plain/180623ecdb0fbe555d16e2ddbb0edc31185e1a1f Add dummy ('none') build system for packages only containing a bunch of static files --- 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