mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-31 00:11:59 +02:00
Allows customizing various settings. For now it includes player seeking times and mode customization. More options will be added in the future.
16 lines
541 B
Meson
16 lines
541 B
Meson
sharedir = join_paths(get_option('prefix'), 'share')
|
|
iconsdir = join_paths(sharedir, 'icons', 'hicolor')
|
|
|
|
install_data('com.github.rafostar.Clapper.svg',
|
|
install_dir: join_paths(iconsdir, 'scalable', 'apps')
|
|
)
|
|
install_data('com.github.rafostar.Clapper.gschema.xml',
|
|
install_dir: join_paths(sharedir, 'glib-2.0', 'schemas')
|
|
)
|
|
install_data('com.github.rafostar.Clapper.xml',
|
|
install_dir: join_paths(sharedir, 'mime', 'packages')
|
|
)
|
|
install_data('com.github.rafostar.Clapper.desktop',
|
|
install_dir: join_paths(sharedir, 'applications')
|
|
)
|