libwacom-vl.spec 1.5 KB

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