aboutsummaryrefslogtreecommitdiffstats
path: root/community/font-noto/fontconfig.xml.erb
diff options
context:
space:
mode:
Diffstat (limited to 'community/font-noto/fontconfig.xml.erb')
-rw-r--r--community/font-noto/fontconfig.xml.erb31
1 files changed, 0 insertions, 31 deletions
diff --git a/community/font-noto/fontconfig.xml.erb b/community/font-noto/fontconfig.xml.erb
deleted file mode 100644
index 8459ab0cea1..00000000000
--- a/community/font-noto/fontconfig.xml.erb
+++ /dev/null
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
-<fontconfig>
- <% data['fonts'].each do |font| %>
- <!-- Noto <%= font['family'] %> -->
- <match>
- <%- if data['lang'] -%>
- <test name="lang" compare="contains">
- <%- (font['lang'] || data['lang']).each do |code| -%>
- <string><%= code %></string>
- <%- end -%>
- </test>
- <%- end -%>
- <test name="family">
- <string><%= font['alias'] %></string>
- </test>
- <edit name="family" mode="prepend">
- <string>Noto <%= font['family'] %></string>
- </edit>
- <edit name="fonthashint" mode="append">
- <bool>true</bool>
- </edit>
- </match>
- <alias>
- <family>Noto <%= font['family'] %></family>
- <default>
- <family><%= font['alias'] %></family>
- </default>
- </alias>
- <% end %>
-</fontconfig>