File fix-makefile-finding-FreeSans-font.patch of Package domino-chain
diff -Nur domino-chain.gitlab.io-1.1/Makefile new/Makefile --- domino-chain.gitlab.io-1.1/Makefile 2020-02-09 09:53:36.000000000 +0100 +++ new/Makefile 2020-05-07 10:56:17.694355367 +0200 @@ -188,6 +188,7 @@ if [ -e /usr/share/fonts/truetype/freefont/FreeSans.ttf ]; then cp /usr/share/fonts/truetype/freefont/$(notdir $@) $@; \ elif [ -e /usr/share/fonts/FreeSans.ttf ]; then cp /usr/share/fonts/$(notdir $@) $@; \ elif [ -e /usr/share/fonts/freefont/FreeSans.ttf ]; then cp /usr/share/fonts/freefont/$(notdir $@) $@; \ + elif [ -e /usr/share/fonts/truetype/FreeSans.ttf ]; then cp /usr/share/fonts/truetype/$(notdir $@) $@; \ else echo 'Unable to find $(notdir $@)'; exit 1; \ fi