diff options
author | Thibault Saunier <thibault.saunier@collabora.com> | 2014-03-06 18:34:55 +0100 |
---|---|---|
committer | Thibault Saunier <tsaunier@gnome.org> | 2014-06-16 14:44:39 +0200 |
commit | 2f01873ea8ec2996ad0fd23faa94158905411dc1 (patch) | |
tree | c755f0da5748bd5c25b45f04e5f60e2ed76204f7 /recipes/at-spi2-core.recipe | |
parent | 8f043566a56f7f167b164131583282fdfb8e25a8 (diff) |
recipes: Add a Gtk+3 recipe
Update some dependencies:
+ Update librsvg to version 2.40.1
+ Update pango to version 1.36.1 and make it depend on harfbuzz
+ Update fontconfig to version 2.11.0
+ Add a gnome-themes-standard recipe so we have the Adwaita theme installed
+ Add a harfbuzz recipe as pango now depends on it
+ Backport a patch to allow setting Gtk theme through the GTK_THEME env
variable
Diffstat (limited to 'recipes/at-spi2-core.recipe')
-rw-r--r-- | recipes/at-spi2-core.recipe | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/recipes/at-spi2-core.recipe b/recipes/at-spi2-core.recipe new file mode 100644 index 00000000..34e81a44 --- /dev/null +++ b/recipes/at-spi2-core.recipe @@ -0,0 +1,29 @@ +# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python + + +class Recipe(recipe.Recipe): + name = 'at-spi2-core' + version = '2.10.2' + licenses = [License.LGPLv2Plus] + deps = [] + + stype = SourceType.TARBALL + url = 'http://ftp.gnome.org/pub/GNOME/sources/at-spi2-core/2.10/at-spi2-core-2.10.2.tar.xz' + use_system_libs = True + + files_libs = ['libatspi'] + files_misc = ['etc/at-spi2/accessibility.conf', + 'etc/xdg/autostart/at-spi-dbus-bus.desktop' + 'libexec/at-spi-bus-launcher', + 'libexec/at-spi2-registryd' + 'share/dbus-1/services/org.a11y.Bus.service', + 'share/dbus-1/services/org.a11y.atspi.Registry.service' + 'etc/at-spi2', + 'etc/xdg/autostart/at-spi-dbus-bus.desktop', + 'libexec/at-spi-bus-launcher', + 'libexec/at-spi2-registryd', + 'share/dbus-1/services/org.a11y.Bus.service', + 'share/dbus-1/services/org.a11y.atspi.Registry.service'] + files_lang = ['at-spi2-core'] + files_gi = ['lib/girepository-1.0/Atspi-2.0.typelib', + 'lib/girepository-1.0/Atspi-2.0.typelib'] |