debian build (first take)

This commit is contained in:
Jakob Ketterl
2019-12-08 14:02:09 +01:00
parent 1d1851dc76
commit 37086bc6c7
7 changed files with 45 additions and 1 deletions

View File

@ -1 +1,5 @@
openwebrx_version = "v0.18"
from distutils.version import StrictVersion
_versionstring = "0.18.0"
strictversion = StrictVersion(_versionstring)
openwebrx_version = "v{0}".format(strictversion)