diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-06-08 19:05:22 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2012-06-11 13:40:48 +0200 |
commit | 73076c2ca76f5c7a3881722406c5fff2a571580e (patch) | |
tree | 601f9cea10c21f7769b11be7597752cc3a12a53d /recipes/dbus-glib.recipe | |
parent | d9a5ce2a3fcb61930e33e5adf0fe0016d60849de (diff) |
dbus-glib: add new recipe
Diffstat (limited to 'recipes/dbus-glib.recipe')
-rw-r--r-- | recipes/dbus-glib.recipe | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/recipes/dbus-glib.recipe b/recipes/dbus-glib.recipe new file mode 100644 index 00000000..f68f4516 --- /dev/null +++ b/recipes/dbus-glib.recipe @@ -0,0 +1,19 @@ +# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python + +class Recipe(recipe.Recipe): + name = 'dbus-glib' + version = '0.98' + deps = ['glib'] + + files_bins = ['dbus-binding-tool'] + files_libs = ['libdbus-glib-1'] + files_devel = [ + 'include/dbus-1.0/dbus/dbus-glib-bindings.h', + 'include/dbus-1.0/dbus/dbus-glib-lowlevel.h', + 'include/dbus-1.0/dbus/dbus-glib.h', + 'include/dbus-1.0/dbus/dbus-gtype-specialized.h', + 'include/dbus-1.0/dbus/dbus-gvalue-parse-variant.h', + 'lib/pkgconfig/dbus-glib-1.pc', + ] + files_helper = ['libexec/dbus-bash-completion-helper'] + |