toico-vl.spec 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. Name: toico
  2. Version: 0.18
  3. Release: 1%{?_dist_release}
  4. Summary: converts images to Windows ICO format
  5. Summary(ja): 画像ファイルから Windows アイコンを生成するツール
  6. License: LGPL
  7. Group: Applications/Graphics
  8. Url: http://wizard.ae.krakow.pl/~jb/toico/
  9. Source: http://wizard.ae.krakow.pl/~jb/toico/%{name}-%{version}.tar.gz
  10. Vendor: Project Vine
  11. Distribution: Vine Linux
  12. Packager: Susumu Tanimura <stanimura-ngs@umin.ac.jp>
  13. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  14. BuildRequires: libpng-devel libungif-devel libtiff-devel zlib-devel
  15. Requires: libpng libungif libtiff
  16. %description
  17. Toico converts PNG, GIF, TIFF, BMP and XPM files to Windows icon
  18. format (ICO). It is possible to create multi-image icon.
  19. Usage example:
  20. toico icon-16x16.png icon-32x32.png -o favicon.ico
  21. %description -l ja
  22. ToICO は PNG, GIF, TIFF, BMP, XPM 形式画像をWindows ICO形式に変換する
  23. プログラムです.解像度の異なる複数のイメージをアイコンに含めることができ,
  24. favicon.ico の作成に便利です.
  25. 使い方
  26. toico icon-16x16.png icon-32x32.png -o favicon.ico
  27. %prep
  28. %setup -q
  29. %build
  30. make
  31. make ico2png
  32. %install
  33. [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
  34. %{__install} -d %{buildroot}%{_bindir}
  35. %{__install} -d %{buildroot}%{_mandir}/man1
  36. %{__install} -m 755 toico %{buildroot}%{_bindir}
  37. %{__install} -m 755 ico2png %{buildroot}%{_bindir}
  38. %{__install} -m 644 toico.man %{buildroot}%{_mandir}/man1/toico.1
  39. %clean
  40. [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
  41. %files
  42. %defattr(-,root,root)
  43. %{_bindir}/*
  44. %{_mandir}/*/*
  45. %changelog
  46. * Sun Oct 12 2008 Shu KONNO <owa@bg.wakwak.com> 0.18-1vl5
  47. - applied new versioning policy, spec in utf-8
  48. * Thu Aug 17 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.18-0vl1
  49. - updated to 0.18
  50. - include ico2png
  51. - fixed %install section
  52. * Thu Oct 14 2004 <stanimura-ngs@umin.ac.jp>
  53. - Initial package for VineLinux3.0