From 180623ecdb0fbe555d16e2ddbb0edc31185e1a1f Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Fri, 12 Oct 2012 20:26:54 +0200 Subject: [PATCH] Add dummy ('none') build system for packages only containing a bunch of static files --- auto_debuild.py | 7 +++++++ 1 file changed, 7 insertions(+) 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 -- 2.30.2