blob: 34e81a449b674aed6eb2e11889cb5ed4325cf2a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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']
|