source: projects/specs/trunk/m/mtdev/mtdev-vl.spec @ 8784

Revision 8784, 2.5 KB checked in by Takemikaduchi, 10 years ago (diff)

xserver-1.15.2

Line 
1Name:           mtdev
2Version:        1.1.5
3Release:        1%{?_dist_release}
4Summary:        Multitouch Protocol Translation Library
5
6Group:          System Environment/Libraries
7License:        MIT
8URL:            http://bitmath.org/code/mtdev/
9
10Source0:        http://bitmath.org/code/%{name}/%{name}-%{version}.tar.gz
11Source1:        make-git-snapshot.sh
12Source2:        commitid
13BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
14
15BuildRequires:  autoconf automake libtool
16BuildRequires:  xorg-x11-util-macros >= 1.5.0-1
17
18%description
19%{name} is a stand-alone library which transforms all variants of kernel MT
20events to the slotted type B protocol. The events put into mtdev may be from
21any MT device, specifically type A without contact tracking, type A with
22contact tracking, or type B with contact tracking.
23
24%package devel
25Summary:        Multitouch Protocol Translation Library Development Package
26Requires:       %{name} = %{version}-%{release}
27Requires:       pkgconfig
28
29%description devel
30Multitouch protocol translation library development package.
31
32%prep
33%setup -q
34
35%build
36autoreconf -v --install || exit 1
37%configure --disable-static
38make %{?_smp_mflags}
39
40%install
41rm -rf %{buildroot}
42make install DESTDIR=%{buildroot} INSTALL="install -p"
43
44# We intentionally don't ship *.la files
45rm -f %{buildroot}%{_libdir}/*.la
46
47%clean
48rm -rf %{buildroot}
49
50%post -p /sbin/ldconfig
51%postun -p /sbin/ldconfig
52
53%files
54%defattr(-,root,root,-)
55%doc COPYING README CREDITS
56%{_libdir}/libmtdev.so.*
57
58%files devel
59%defattr(-,root,root,-)
60%{_includedir}/mtdev.h
61%{_includedir}/mtdev-plumbing.h
62%{_includedir}/mtdev-mapping.h
63%{_libdir}/libmtdev.so
64%{_libdir}/pkgconfig/mtdev.pc
65%{_bindir}/mtdev-test
66
67%changelog
68* Wed Jul 09 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 1.5.0-1
69- new upstream release
70
71* Fri Sep 23 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.1.0-1.20110105
72- initial build for Vine Linux
73
74* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.0-2.20110105
75- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
76
77* Wed Jan 05 2011 Peter Hutterer <peter.hutterer@redhat.com> 1.1.0-1.20110105
78- Update to release 1.1.0
79
80* Tue Aug 03 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.0.8-1.20100803
81- Update to release 1.0.8
82
83* Thu Jul 08 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.0.1-2.20100706
84- Require util-macros >= 1.5
85
86* Tue Jul 06 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.0.1-1.20100706
87- Initial package
Note: See TracBrowser for help on using the repository browser.