ComixCursors.spec.in 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. Name: PACKAGENAME
  2. Version: VERSION
  3. Release: 1%{?dist}
  4. Summary: SUMMARY
  5. Group: System/X11/Icons
  6. License: GPLv3
  7. URL: https://gitlab.com/limitland/comixcursors
  8. Source0: %{name}-%{version}.tar.bz2
  9. BuildArch: noarch
  10. Requires: XFree86
  11. Packager: Jens Luetkens <j.luetkens@limitland.de>
  12. Distribution: generic
  13. prefix: /usr/share
  14. %description
  15. X11 mouse theme with a comics feeling.
  16. The package comes with 12 different mouse themes for X11.
  17. 6 colors (black, blue, green, orange, red and white)
  18. 2 different weights (slim and normal)
  19. 4 sizes (small, regular, large and huge) are combined into multisize cursors
  20. %prep
  21. %setup -q -c %{name}-%{version} -n %{name}-%{version}
  22. %build
  23. %install
  24. [ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
  25. install -d %{buildroot}%{prefix}/icons
  26. cp -r ComixCursors-* %{buildroot}%{prefix}/icons
  27. %clean
  28. [ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
  29. %files
  30. %defattr(-,root,root,-)
  31. #%doc AUTHORS COPYING LICENSE.GPL README NEWS
  32. %dir %{prefix}/icons/%{name}-*
  33. %{prefix}/icons/%{name}-*/*
  34. %changelog