From: Simon Tatham Date: Mon, 18 Jan 2021 22:04:55 +0000 (+0000) Subject: Switch to using convert for the icon. X-Git-Tag: archive/debian/1.18-1~1 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~sgtatham/git?a=commitdiff_plain;h=012dd9929556904bff99c6a274f7e04c9a6cd4ff;p=chroma-debian.git Switch to using convert for the icon. Inkscape's export to PNG has variable command line syntax between versions, and also wanted an X server while running. --- diff --git a/debian/make-debian-icons.py b/debian/make-debian-icons.py index 935424b..780064d 100755 --- a/debian/make-debian-icons.py +++ b/debian/make-debian-icons.py @@ -16,4 +16,4 @@ for elt in list(root): tree.write('icon.svg') -subprocess.check_call(["inkscape","-e","icon.png","icon.svg"]) +subprocess.check_call(["convert","-background","transparent","icon.svg","icon.png"])