]> git.pld-linux.org Git - packages/gail.git/blob - gail.spec
- initial release (based on RH)
[packages/gail.git] / gail.spec
1 Summary:        Accessibility implementation for GTK+ and GNOME libraries
2 Name:           gail
3 Version:        0.13
4 Release:        0.1
5 Source0:        ftp://ftp.gnome.org/pub/gnome/pre-gnome2/sources/%{name}/%{name}-%{version}.tar.bz2
6 URL:            http://developer.gnome.org/projects/gap
7 License:        LGPL
8 Group:          X11/Libraries
9 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
10 BuildRequires:  gtk+2-devel
11 BuildRequires:  libgnomecanvas-devel
12
13 %define         _prefix         /usr/X11R6
14
15 %description
16 GAIL implements the abstract interfaces found in ATK for GTK+ and
17 GNOME libraries, enabling accessibility technologies such as at-spi to
18 access those GUIs.
19
20 %package devel
21 Summary:        Header files to compile applications that use GAIL
22 Group:          X11/Development/Libraries
23 Requires:       %{name} = %{version}
24
25 %description devel
26 gail-devel contains the feader files required to compile applications 
27 against the GAIL libraries.
28
29 %package static
30 Summary:        Static libraries to compile applications that use GAIL
31 Group:          X11/Development/Libraries
32 Requires:       %{name}-devel = %{version}
33
34 %description static
35 gail-devel contains the static libraries required to compile applications 
36 against the GAIL libraries.
37
38 %prep
39 %setup -q
40
41 %build
42 %configure \
43         --enable-gtk-doc=no \
44         --enable-static
45 %{__make}
46
47 %install
48 rm -rf $RPM_BUILD_ROOT
49 %{__make} install \
50         DESTDIR=$RPM_BUILD_ROOT \
51         pkgconfigdir=%{_pkgconfigdir}
52
53 gzip -9nf AUTHORS ChangeLog NEWS README
54
55 %clean
56 rm -rf $RPM_BUILD_ROOT
57
58 %files
59 %defattr(644,root,root,755)
60 %doc *.gz
61 %attr(755,root,root) %{_libdir}/lib*.so.*.*
62 %attr(755,root,root) %{_libdir}/gtk-2.0/modules/lib*.??
63
64 %files devel
65 %defattr(644,root,root,755)
66 %attr(755,root,root) %{_libdir}/lib*.??
67 %{_includedir}/gail-1.0
68 %{_pkgconfigdir}/*.pc
69
70 %files static
71 %defattr(644,root,root,755)
72 %{_libdir}/*.a
This page took 0.063402 seconds and 4 git commands to generate.