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);
builder.setSummary( editor.getValue( "rpm:summary/text()"));
builder.setDescription( editor.getValue( "rpm:description/text()"));