Initial checkin of Pika from heckimp
This commit is contained in:
41
icons/Color/64/meson.build
Normal file
41
icons/Color/64/meson.build
Normal file
@ -0,0 +1,41 @@
|
||||
icons_dir = size + 'x' + size
|
||||
|
||||
if have_vector_icons
|
||||
icon_dialog_question = custom_target('icon-dialog-question',
|
||||
input : [ '../scalable/dialog-question.svg' ],
|
||||
output: [ 'dialog-question.png' ],
|
||||
command: [
|
||||
colorsvg2png, '@INPUT@', '@OUTPUT@', size,
|
||||
],
|
||||
install: false,
|
||||
)
|
||||
icon_mascot_eek = custom_target('icon-mascot-eek',
|
||||
input : [ '../scalable/pika-mascot-eek.svg' ],
|
||||
output: [ 'pika-mascot-eek.png' ],
|
||||
command: [
|
||||
colorsvg2png, '@INPUT@', '@OUTPUT@', size,
|
||||
],
|
||||
install: false,
|
||||
)
|
||||
else
|
||||
foreach icon : source_icons
|
||||
icon_name = icon + '.png'
|
||||
input_path = '../scalable/' + icon + '.svg'
|
||||
|
||||
icon_tgt = custom_target(icon_name,
|
||||
input : [ input_path ],
|
||||
output: [ icon_name ],
|
||||
command: [
|
||||
colorsvg2png, '@INPUT@', '@OUTPUT@', size,
|
||||
],
|
||||
install: true,
|
||||
install_dir: pikaiconsdir / theme / icons_dir / 'apps',
|
||||
)
|
||||
|
||||
if icon == 'dialog-question'
|
||||
icon_dialog_question = icon_tgt
|
||||
elif icon == 'pika-mascot-eek'
|
||||
icon_mascot_eek = icon_tgt
|
||||
endif
|
||||
endforeach
|
||||
endif
|
BIN
icons/Color/64/pika-frame.png
Normal file
BIN
icons/Color/64/pika-frame.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 398 B |
BIN
icons/Color/64/pika-texture.png
Normal file
BIN
icons/Color/64/pika-texture.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 198 B |
Reference in New Issue
Block a user