mirror of https://pagure.io/twemoji-fonts
28 lines
1.2 KiB
Diff
28 lines
1.2 KiB
Diff
--- noto-emoji-018aa149d622a4fea11f01c61a7207079da301bc.orig/Makefile
|
|
+++ noto-emoji-018aa149d622a4fea11f01c61a7207079da301bc/Makefile
|
|
@@ -21,7 +21,7 @@
|
|
PYTHON = python3
|
|
PNGQUANTFLAGS = --speed 1 --skip-if-larger --quality 85-95 --force
|
|
BODY_DIMENSIONS = 136x128
|
|
-IMOPS := -size $(BODY_DIMENSIONS) canvas:none -compose copy -gravity center
|
|
+IMOPS := -size $(BODY_DIMENSIONS) -background none -gravity center -extent $(BODY_DIMENSIONS) -compose copy
|
|
|
|
# zopflipng is better (about 5-10%) but much slower. it will be used if
|
|
# present. pass ZOPFLIPNG= as an arg to make to use optipng instead.
|
|
@@ -178,13 +179,13 @@
|
|
# imagemagick packaged with ubuntu trusty (6.7.7-10) by using -composite.
|
|
|
|
$(EMOJI_DIR)/%.png: $(EMOJI_SRC_DIR)/%.png | $(EMOJI_DIR)
|
|
- @convert $(IMOPS) "$<" -composite "PNG32:$@"
|
|
+ @gm convert $(IMOPS) "$<" "PNG32:$@"
|
|
|
|
$(FLAGS_DIR)/%.png: $(FLAGS_SRC_DIR)/%.png ./waveflag | $(FLAGS_DIR)
|
|
@./waveflag $(FLAGS_DIR)/ "$<"
|
|
|
|
$(RESIZED_FLAGS_DIR)/%.png: $(FLAGS_DIR)/%.png | $(RESIZED_FLAGS_DIR)
|
|
- @convert $(IMOPS) "$<" -composite "PNG32:$@"
|
|
+ @gm convert $(IMOPS) "$<" "PNG32:$@"
|
|
|
|
flag-symlinks: $(RESIZED_FLAG_FILES) | $(RENAMED_FLAGS_DIR)
|
|
@$(subst ^, , \
|