diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/Makefile.am | 7 | ||||
-rw-r--r-- | data/resources/profile.svgin | 6 |
2 files changed, 12 insertions, 1 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index 5af075f..db6e26f 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -22,7 +22,8 @@ SUFFIXES = .htmlin .html nobase_dist_pkgdata_DATA = \ resources/gpl-3.0-standalone.html \ resources/prism/prism.css \ - resources/prism/prism.js + resources/prism/prism.js \ + resources/profile.svg CLEANFILES = $(nobase_dist_pkgdata_DATA) @@ -30,6 +31,10 @@ CLEANFILES = $(nobase_dist_pkgdata_DATA) @out=$@; $(MKDIR_P) $${out%/*} $(AM_V_GEN)$(LN_S) $(abs_builddir)/$< $(abs_builddir)/$@ +.svgin.svg: + @out=$@; $(MKDIR_P) $${out%/*} + $(AM_V_GEN)$(LN_S) $(abs_builddir)/$< $(abs_builddir)/$@ + resources/prism/prism.css: $(prismcss_sources) $(AM_V_GEN)cat $(prismcss_sources) >$@ diff --git a/data/resources/profile.svgin b/data/resources/profile.svgin new file mode 100644 index 0000000..8784732 --- /dev/null +++ b/data/resources/profile.svgin @@ -0,0 +1,6 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" + viewBox="0, 0, 16, 16"> + <rect x="1" y="9" width="14" height="7" rx="2" ry="2" fill="@COLOR@" /> + <ellipse cx="8" cy="11" rx="7" ry="4" fill="@COLOR@" /> + <circle cx="8" cy="4" r="4" fill="@COLOR@" /> +</svg> |