mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-30 16:02:00 +02:00
Add missing PiP icons from web devel kit. Also add play/pause icons at the right size and remove all workarounds/scaling implemented or these two. Playback icons are always two bars for pause and triangle for play, so hopefully this will not be problematic, as this guaranties the right size for them that Adwaita unfortunately cannot provide.
39 lines
962 B
Meson
39 lines
962 B
Meson
project('com.github.rafostar.Clapper', 'c', 'cpp',
|
|
version: '0.3.0',
|
|
meson_version: '>= 0.50.0',
|
|
license: 'GPL-3.0-or-later',
|
|
default_options: [
|
|
'warning_level=1',
|
|
'buildtype=debugoptimized'
|
|
]
|
|
)
|
|
|
|
gnome = import('gnome')
|
|
i18n = import('i18n')
|
|
python = import('python')
|
|
python_bin = python.find_installation('python3')
|
|
|
|
pkgdatadir = join_paths(get_option('datadir'), meson.project_name())
|
|
|
|
if not python_bin.found()
|
|
error('No valid python3 binary found')
|
|
endif
|
|
|
|
if get_option('clapper-lib')
|
|
subdir('lib')
|
|
endif
|
|
|
|
if get_option('clapper-player')
|
|
subdir('bin')
|
|
subdir('data')
|
|
subdir('po')
|
|
|
|
installdir = join_paths(get_option('prefix'), 'share', meson.project_name())
|
|
install_subdir('src', install_dir : installdir)
|
|
install_subdir('extras', install_dir : installdir)
|
|
install_subdir('css', install_dir : installdir)
|
|
install_subdir('ui', install_dir : installdir)
|
|
|
|
meson.add_install_script('build-aux/meson/postinstall.py')
|
|
endif
|