pidgin/purple-plugin-pack

Add libpurple+cairo+pango plugins to Meson.
meson
2017-06-23, Elliott Sales de Andrade
55f2f223cdce
Parents ac0961eff0af
Children ccd38514b21c
Add libpurple+cairo+pango plugins to Meson.
--- a/meson.build Fri Jun 23 03:38:32 2017 -0400
+++ b/meson.build Fri Jun 23 03:43:01 2017 -0400
@@ -202,6 +202,7 @@
subdir('simfix')
subdir('slashexec')
subdir('smartear')
+subdir('splitter')
subdir('snpp')
subdir('sslinfo')
#subdir('stress')
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/splitter/meson.build Fri Jun 23 03:43:01 2017 -0400
@@ -0,0 +1,9 @@
+if PURPLE.found() and CAIRO.found() and PANGO.found()
+ splitter = shared_library('splitter',
+ 'splitter.c',
+ dependencies : [PURPLE, CAIRO, PANGO, GLIB],
+ name_prefix : '',
+ install : true,
+ install_dir : PURPLE_LIBDIR)
+ PP_PURPLE_BUILD += 'splitter'
+endif