This is the code I'm using:
$meta_boxes[] = array(
'title' => 'Album Tracks',
'pages' => array( 'post','page' ),
'fields' => array(
array(
'id' => 'standard',
// Group field
'type' => 'group',
// Clone whole group?
'clone' => true,
// Drag and drop clones to reorder them?
'sort_clone' => true,
// Sub-fields
'fields' => array(
array(
'name' => 'Track name',
'id' => 'text',
'type' => 'text',
),
array(
'name' => 'Release Date',
'id' => 'date',
'type' => 'date',
),
array(
'name' => 'Genre',
'id' => 'genre',
'type' => 'select_advanced',
'options' => array(
'pop' => 'Pop',
'rock' => 'Rock',
),
),
),
),
),
);