meson.build
    
    ASCII text
        
            1
            foreach theme: themes 
        
            2
              index_theme_conf = configuration_data() 
        
            3
              index_theme_conf.set('theme_name', theme['name']) 
        
            4
             
        
            5
              index_theme = configure_file( 
        
            6
                input: 'index.theme.in', 
        
            7
                output: '@0@.index.theme'.format(theme['name']), 
        
            8
                configuration: index_theme_conf, 
        
            9
              ) 
        
            10
             
        
            11
              install_data( 
        
            12
                index_theme, 
        
            13
                rename: 'index.theme', 
        
            14
                install_dir: theme['dir'], 
        
            15
              ) 
        
            16
            endforeach 
        
            17
             
        
            18
            subdir('chrome') 
        
            19
            subdir('cinnamon') 
        
            20
            subdir('gnome-shell') 
        
            21
            subdir('gtk-2.0') 
        
            22
            subdir('gtk-3.0') 
        
            23
            subdir('gtk-4.0') 
        
            24
            subdir('metacity-1') 
        
            25
            subdir('plank') 
        
            26
            subdir('unity') 
        
            27
            subdir('xfwm4') 
        
            28