*/
public void run( XmlEditor editor, String name, String version, String release, Contents include, File destination) throws NoSuchAlgorithmException, IOException {
Builder builder = new Builder();
builder.setPackage( name, version, release);
RpmType type = RpmType.valueOf( editor.getValue( "rpm:type", BINARY.toString()));
builder.setType( type);
Architecture arch = Architecture.valueOf( editor.getValue( "rpm:architecture", NOARCH.toString()));
Os os = Os.valueOf( editor.getValue( "rpm:os", LINUX.toString()));
builder.setPlatform( arch, os);