File: SConscript

package info (click to toggle)
create-resources 0.1.3-2.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 10,380 kB
  • ctags: 2
  • sloc: makefile: 52
file content (15 lines) | stat: -rw-r--r-- 777 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Import('env')
print 'Preparing Swatches ...'
swatches = ['Bears', 'Bgold', 'Blues', 'Borders', 'Browns_And_Yellows', 'Caramel', 'Cascade',
            'China', 'Coldfire', 'Cool_Colors', 'Cranes', 'Dark_pastels', 'Default', 'Ega', 'Firecode', 
				'GNOME_HIG', 'Gold', 'Grayblue', 'Grays', 'GrayViolet', 'Greens', 'Hilite', 'Kahki',
            'Lights', 'Muted', 'Named_Colors', 'News3', 'Op2', 'OpenOffice_org', 'Paintjet', 'Pastels', 
				'Plasma', 'Reds', 'Reds_And_Purples', 'svg', 'Royal', 'Tango-Palette', 'Topographic', 
				'Visibone', 'Visibone2', 'Volcano', 'Warm_Colors', 'webhex', 'websafe22', 'X11', 'X11_Greys',]

installdir=env['PREFIX'] + '/share/create/swatches'

env.Install(installdir, swatches)
isw=env.Alias('install-swatches', installdir)
Export('isw')