<?xml version="1.0"?>
<!DOCTYPE rdf:RDF [<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#">]>
<rdf:RDF   
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"  
  xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
  xmlns:mm="http://sflow.org/data/2005-06/mimetype#"
  xmlns:apps="http://sflow.org/schema/2005-06/applications#"
  xmlns:ops="http://sflow.org/schema/2005-06/operations#"
  xml:base="http://sflow.org/data/2005-06/application">


<ops:Category rdf:ID="FileCompress">
  <ops:name xml:lang="en">Fle compression</ops:name>
  <ops:name xml:lang="it">Comprimi file</ops:name>
</ops:Category>

<ops:Category rdf:ID="FileDecompress">
  <ops:name xml:lang="en">Uncompress file</ops:name>
  <ops:name xml:lang="it">Decomprimi file</ops:name>
</ops:Category>

<ops:Operation rdf:ID="fileCompressToTarGz">
  <ops:name xml:lang="en">Make tar.gz</ops:name>
  <ops:name xml:lang="it">Crea tar.gz</ops:name>
  <ops:returnMimeType rdf:resource="http://sflow.org/data/2005-06/mimetype#application_x-compressed-tar" />
  <ops:groupOperation>true</ops:groupOperation>
  <ops:hasCategory rdf:resource="#FileCompress" />
</ops:Operation>

<ops:Operation rdf:ID="fileDecompressFromTarGz">
  <ops:name xml:lang="en">Uncompress tar.gz</ops:name>
  <ops:name xml:lang="it">Decomprime tar.gz</ops:name>
  <ops:hasCategory rdf:resource="#FileDecompress" />
</ops:Operation>




<apps:Application rdf:ID="tar">
  <apps:name>Tar</apps:name>
  <apps:installationPath>/home/chris/wrappers</apps:installationPath>
  <apps:execCommand>tar_wrp.py</apps:execCommand>
  <apps:version>2.3</apps:version>
  <apps:canRead rdf:resource="http://sflow.org/data/2005-06/mimetype#every" />
  <apps:canPerform>
    <rdf:Bag>
      <rdf:li rdf:nodeID="_tarCompressToGz" />
      <rdf:li rdf:nodeID="_tarDecompressFromGz" />
    </rdf:Bag>
  </apps:canPerform>
</apps:Application>


<rdf:Description rdf:nodeID="_tarCompressToGz">
  <apps:toMimeType rdf:resource="http://sflow.org/data/2005-06/mimetype#every" />
  <apps:operation rdf:resource="#fileCompressToTarGz" />
  <apps:parameters>
    <rdf:Seq>
      <rdf:li rdf:nodeID="_tarCompressToGz_p1" />
    </rdf:Seq>
  </apps:parameters>
</rdf:Description>

<rdf:Description rdf:nodeID="_tarCompressToGz_p1">
  <apps:commandOption>--compress</apps:commandOption>
</rdf:Description>


<rdf:Description rdf:nodeID="_tarDecompressFromGz">
  <apps:toMimeType rdf:resource="http://sflow.org/data/2005-06/mimetype#application_x-compressed-tar" />
  <apps:operation rdf:resource="#fileDecompressFromTarGz" />
  <apps:parameters>
    <rdf:Seq>
      <rdf:li rdf:nodeID="_tarDecompressFromGz_p1" />
    </rdf:Seq>
  </apps:parameters>
</rdf:Description>

<rdf:Description rdf:nodeID="_tarDecompressFromGz_p1">
  <apps:commandOption>--decompress</apps:commandOption>
</rdf:Description>


</rdf:RDF>