Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install elementary icons #25

Merged
merged 13 commits into from
Oct 19, 2021
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
14 changes: 14 additions & 0 deletions data/meson.build
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
icon_sizes = ['16', '24', '32', '48', '64', '128']

foreach i : icon_sizes
install_data(
join_paths('icons', i + '.svg'),
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps'),
rename: meson.project_name() + '.svg'
)
install_data(
join_paths('icons', i + '.svg'),
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i + '@2', 'apps'),
rename: meson.project_name() + '.svg'
)
endforeach
3 changes: 3 additions & 0 deletions meson.build
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
project('org.gnome.Evince')

subdir('data')
11 changes: 11 additions & 0 deletions org.gnome.evince.json
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,18 @@
"type": "patch",
"path": "dark-style.patch"
}
],
"cleanup": [
"org.gnome.Evince.svg"
]
},
{
"name": "customizations",
"buildsystem": "meson",
"sources": [{
"type": "dir",
"path": "."
}]
}
]
}