blob: ad142d0c98d728577ed8a4547e274e9786210577 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<inkscape-extension>
<_name>SVGZ Input</_name>
<id>org.inkscape.input.svgz</id>
<dependency type="executable">gzip</dependency>
<dependency type="extension">org.inkscape.input.svg</dependency>
<input>
<extension>.svgz</extension>
<mimetype>image/x-svgz</mimetype>
<_filetypename>Compressed Inkscape SVG (*.svgz)</_filetypename>
<_filetypetooltip>Inkscape's native file format compressed with GZip</_filetypetooltip>
<output_extension>org.inkscape.output.svgz</output_extension>
</input>
<script>
<command reldir="path">gzip -cd</command>
<check reldir="path">gzip</check>
</script>
</inkscape-extension>
|