source: projects/specs/trunk/lib/libw/libwacom/libwacom-vl.spec @ 6011

Revision 6011, 1.5 KB checked in by Takemikaduchi, 12 years ago (diff)

new upstream release

Line 
1Summary:        A library to identify wacom tablets
2Name:           libwacom
3Version:        0.4
4Release:        1%{?_dist_release}
5
6Group:          System Environment/Libraries
7License:        MIT
8URL:            http://sourceforge.net/projects/linuxwacom/
9Source0:        %{name}-%{version}.tar.bz2
10
11BuildRoot:      %{_tmppath}/%{name}-%{version}-root
12
13BuildRequires:  glib2-devel
14BuildRequires:  libgudev1-devel
15
16Vendor:         Project Vine
17Distribution:   Vine Linux
18Packager:       Takemikaduchi
19
20%description
21libwacom is a library to identify wacom tablets and their model-specific
22features. It provides easy access to information such as "is this a built-in
23on-screen tablet", "what is the size of this model", etc.
24
25
26%package        devel
27Summary:        Development tools for libwacom
28Summary(ja):    libwacom の開発環境
29Group:          Development/Libraries
30Requires:       %{name} = %{version}-%{release}
31Requires:       pkgconfig
32
33%description devel
34Header files and libraries for building a extension library for the
35libwacom.
36
37
38%prep
39%setup -q
40
41
42%build
43%configure --disable-static
44
45
46%install
47rm -rf $RPM_BUILD_ROOT
48make install DESTDIR=$RPM_BUILD_ROOT
49
50find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
51
52
53%clean
54rm -rf $RPM_BUILD_ROOT
55
56
57%files
58%defattr(-,root,root,-)
59%doc COPYING README NEWS
60%{_libdir}/libwacom.so.*
61%{_datadir}/%{name}
62
63%files devel
64%defattr(-,root,root,-)
65%{_includedir}/libwacom-1.0
66%{_libdir}/libwacom.so
67%{_libdir}/pkgconfig/libwacom.pc
68
69
70%changelog
71* Sun Apr 15 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.4-1
72- initial build for Vine Linux
Note: See TracBrowser for help on using the repository browser.