jhead-vl.spec 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. Name: jhead
  2. Summary: EXIF JPEG header manipulation tool
  3. Summary(ja): JPEG の EXIF ヘッダを操作するツール
  4. Version: 3.00
  5. Release: 1%{?_dist_release}
  6. License: Public Domain
  7. URL: http://www.sentex.net/~mwandel/jhead/
  8. Source: http://www.sentex.net/~mwandel/jhead/%{name}-%{version}.tar.gz
  9. Group: Applications/Graphics
  10. Buildroot: %{_tmppath}/%{name}-%{version}-root
  11. Requires: libjpeg-turbo-utils
  12. Vendor: Project Vine
  13. Distribution: Vine Linux
  14. %description
  15. Jhead displays and manipulates the non-image portions of EXIF formatted
  16. JPEG images, such as the images produced by most digital cameras.
  17. Jhead can extract various EXIF info from an JPEG file such as:
  18. time/date picture was taken; camera make/model; integral lowres thumbnail;
  19. shutter speed; F-stop number; flash used; distance camera was focused at;
  20. and many more. Jhead can also modify existing EXIF info on the JPEG file
  21. such as rotation tag, date/time offsets, jpeg comments etc.
  22. %description -l ja
  23. Jhead は、JPEG 画像ファイルの EXIF 情報を表示したり編集したりするツールです。
  24. ディジタルカメラで撮影された画像のほとんどは、EXIF 情報が付加されています。
  25. Jhead を使うと、撮影日時、カメラのメーカーやモデル名、埋め込みサムネール、
  26. シャッタースピード、F値、フラッシュ使用の有無、焦点距離、その他多くの
  27. EXIF 情報を JPEG ファイルから取り出し表示することが出来ます。
  28. また Jhead では、ローテーションタグや、日時オフセット、JPEG コメントなどを
  29. 修正することも可能です。
  30. %prep
  31. %setup -q
  32. %build
  33. make %{?_smp_mflags} CFLAGS="%{optflags}"
  34. %install
  35. rm -rf %{buildroot}
  36. install -d %{buildroot}%{_bindir}
  37. install -d %{buildroot}%{_mandir}/man1
  38. install -m 755 jhead %{buildroot}%{_bindir}
  39. install -m 644 jhead.1 %{buildroot}%{_mandir}/man1/
  40. %clean
  41. rm -rf %{buildroot}
  42. %files
  43. %defattr(-,root,root,-)
  44. %doc readme.txt usage.html changes.txt
  45. %attr(0755,root,root) %{_bindir}/*
  46. %{_mandir}/man?/*
  47. %changelog
  48. %changelog
  49. * Sun Feb 14 2016 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.00-1
  50. - new upstream release
  51. * Fri Mar 23 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.95-1
  52. - updated to 2.95 (the newest version so far)
  53. - spec revamp; add comprehensive description (English/Japanese)
  54. * Sun Sep 28 2008 Shu KONNO <owa@bg.wakwak.com> 2.6-1vl5
  55. - applied new versioning policy
  56. * Fri Jun 2 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.6-0vl1
  57. - new upstream release
  58. - s/Copyright/License/
  59. - changed Group to Applications/Graphics
  60. * Sun Dec 2 2001 Jun Nishii <jun@vinelinux.org> 1.5-0vl1
  61. - first release