source: projects/specs/trunk/lib/libe/libevdev/libevdev-vl.spec @ 8784

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

xserver-1.15.2

Line 
1Summary:        A wrapper library for evdev devices
2Summary(ja):    evdev デバイス用ラッパーライブラリ
3
4Name:           libevdev
5Version:        1.2.2
6Release:        1%{?_dist_release}
7
8Group:          System Environment/Libraries
9License:        GPLv2
10URL:            http://www.freedesktop.org/wiki/Software/libevdev/
11Source0:        http://www.freedesktop.org/software/%{name}/%{name}-%{version}.tar.xz
12BuildRoot:              %{_tmppath}/%{name}-%{version}-%{release}-root
13
14
15%description
16libevdev is a wrapper library for evdev devices. it moves the
17common tasks when dealing with evdev devices into a library and
18provides a library interface to the callers, thus avoiding
19erroneous ioctls, etc.
20
21
22%package        devel
23Summary:        Development files for %{name}
24Summary(ja):    %{name} の開発ファイル
25Group:          Development/Libraries
26Requires:       %{name} = %{version}-%{release}
27Requires:       pkgconfig
28
29%description    devel
30This package contains libraries and header files for
31developing applications that use %{name}.
32
33
34%prep
35%setup -q
36
37
38%build
39%configure --disable-static
40make %{?_smp_mflags}
41
42
43%install
44rm -rf $RPM_BUILD_ROOT
45make install DESTDIR=$RPM_BUILD_ROOT
46
47find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
48
49
50%clean
51rm -rf $RPM_BUILD_ROOT
52
53
54%post -p /sbin/ldconfig
55
56%postun -p /sbin/ldconfig
57
58
59%files
60%defattr(-,root,root,-)
61%doc COPYING
62%{_bindir}/touchpad-edge-detector
63%{_libdir}/%{name}.so.*
64
65%files devel
66%defattr(-,root,root,-)
67%doc doc/html
68%{_includedir}/%{name}-1.0
69%{_libdir}/%{name}.so
70%{_libdir}/pkgconfig/%{name}.pc
71%{_mandir}/man3/%{name}.3.gz
72 
73
74%changelog
75* Wed Jul 09 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.2-1
76- initial build for Vine Linux
77
Note: See TracBrowser for help on using the repository browser.