source: projects/specs/trunk/a/accerciser/accerciser-vl.spec @ 6078

Revision 6078, 3.3 KB checked in by Takemikaduchi, 12 years ago (diff)

new upstream release

Line 
1%define pkg_version 3.4.1
2%define pkg_release 1%{?_dist_release}
3
4Summary:        An interactive Python accessibility explorer for the GNOME desktop.
5Summary(ja):    GNOME デスクトップ用 Python アクセシビリティエクスプローラ
6Name:           accerciser
7Version:        %{pkg_version}
8Release:        %{pkg_release}
9Source0:        http://ftp.gnome.org/pub/GNOME/sources/accerciser/3.4/%{name}-%{version}.tar.xz
10License:        BSD
11Group:          Desktop/Accessibility
12URL:            http://live.gnome.org/Accerciser
13
14Requires:       gnome-python-libwnck >= 2.14
15Requires:       gnome-python-rsvg >= 2.14
16Requires:       pygobject3
17Requires:       python >= 2.6
18Requires:       pyatspi
19Requires:       at-spi2-core
20
21Requires(post): desktop-file-utils
22Requires(postun):       desktop-file-utils
23
24BuildRequires:  python-devel >= 2.4
25BuildRequires:  pygobject3-devel
26BuildRequires:  gtk3-devel
27BuildRequires:  at-spi2-core-devel
28BuildRequires:  pyatspi
29BuildRequires:  glib2-devel >= 2.26.0
30BuildRequires:  gnome-doc-utils >= 0.3.2
31BuildRequires:  docbook-dtds
32
33BuildRoot:      %{_tmppath}/%{name}-%{version}-root
34
35Vendor: Project Vine
36Distribution: Vine Linux
37Packager: Takemikaduchi
38
39
40%description
41Accerciser is an interactive Python accessibility explorer for the GNOME
42desktop. It uses AT-SPI to inspect and control widgets, allowing you to check
43if an application is providing correct information to assistive technologies
44and automated test frameworks. Accerciser has a simple plugin framework which
45you can use to create custom views of accessibility information.
46
47
48%prep
49%setup -q
50
51
52%build
53%configure  --disable-scrollkeeper --without-pyreqs
54%{__make} %{?_smp_mflags}
55
56%install
57%{__rm} -rf ${RPM_BUILD_ROOT}
58%{__make} install DESTDIR=${RPM_BUILD_ROOT}
59
60
61%clean
62%{__rm} -rf ${RPM_BUILD_ROOT}
63
64
65%post
66gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
67update-desktop-database & > /dev/null || :
68
69%postun
70if [ $1 -eq 0 ]; then
71  gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
72  update-desktop-database & > /dev/null || :
73  glib-compile-schemas %{_datadir}/glib-2.0/schemas
74fi
75
76%posttrans
77glib-compile-schemas %{_datadir}/glib-2.0/schemas
78
79
80%files
81%defattr(-,root,root)
82%doc AUTHORS COPYING ChangeLog NEWS README
83%{_bindir}/accerciser
84%{python_sitelib}/accerciser
85%{_datadir}/applications/accerciser.desktop
86%{_datadir}/accerciser/*
87%{_datadir}/glib-2.0/schemas/*.xml
88%{_datadir}/gnome/help/accerciser/*
89%{_datadir}/icons/hicolor/*/apps/*
90%{_datadir}/locale/*/*/accerciser*
91%{_mandir}/man1/accerciser.1.gz
92
93
94%changelog
95* Sat Apr 14 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.0-1
96- new upstream release
97- remove BuildRequires: GConf2-devel
98
99* Sat Oct 22 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.1-1
100- new upstream release
101
102* Thu Sep 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.0-1
103- new upstream release
104
105* Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.92-1
106- new upstream release
107- add BuildRequires: gtk3-devel, pygobject3-devel
108- change BuildRequires: at-spi2-core-devel instead of at-spi-devel
109
110* Sun Aug 21 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.5-1
111- new upstream release
112
113* Mon Aug 15 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.4-1
114- new upstream release
115
116* Mon May 02 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.1-1
117- new upstream release
118
119* Sun Oct 10 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.0-1
120- initial build for Vine Linux
121
Note: See TracBrowser for help on using the repository browser.