source: projects/specs/trunk/x/xorg-x11-drv-mtrack/xorg-x11-drv-mtrack-vl.spec @ 5089

Revision 5089, 1.7 KB checked in by Takemikaduchi, 13 years ago (diff)

xserver-1.11.1.902 (1.11.2 RC2)

Line 
1%define tarball BlueDragonX-xf86-input-mtrack
2%define moduledir %(pkg-config xorg-server --variable=moduledir )
3%define driverdir       %{moduledir}/input
4%define githash 71abf32
5
6Summary:   Xorg X11 Multitouch Trackpad Driver
7Summary(ja):   Xorg X11 マルチタッチトラックパッド用ドライバ
8Name:      xorg-x11-drv-mtrack
9Version:   0.2.0
10Release:   2.git%{githash}%{?_dist_release}
11URL:       https://github.com/BlueDragonX/xf86-input-mtrack
12License:   GPLv2+
13Group:     User Interface/X Hardware Support
14
15Source0:   %{tarball}-v%{version}-1-g%{githash}.tar.gz
16
17BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
18BuildRequires: xorg-x11-server-sdk
19BuildRequires: libxkbfile-devel
20BuildRequires: xorg-x11-util-macros >= 1.3.0
21BuildRequires: mtdev-devel >= 1.0.10
22Requires:  xorg-x11-server-Xorg
23Requires:  mtdev >= 1.0.10
24
25%description
26This X input driver provides gestures support for multitouch touchpads,
27with or without an integrated button.
28
29%prep
30%setup -q -n %{tarball}-%{githash}
31
32%build
33aclocal
34autoheader
35autoconf
36libtoolize --copy --force
37automake -a --gnu --include-deps
38%configure --disable-static
39make
40
41%install
42rm -rf $RPM_BUILD_ROOT
43
44make install DESTDIR=$RPM_BUILD_ROOT
45
46# FIXME: Remove all libtool archives (*.la) from modules directory.  This
47# should be fixed in upstream Makefile.am or whatever.
48find $RPM_BUILD_ROOT -regex ".*\.la$" | xargs rm -f --
49
50%clean
51rm -rf $RPM_BUILD_ROOT
52
53%files
54%defattr(-,root,root,-)
55%doc COPYING CREDITS README.md
56%{driverdir}/mtrack_drv.so
57
58%changelog
59* Wed Nov 02 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.0-2.71abf32
60- rebuild with xserver-1.11.1.902
61
62* Fri Sep 23 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.2.0-1.71abf32
63- initial build for Vine Linux
Note: See TracBrowser for help on using the repository browser.