jhead-vl.spec 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. Name: jhead
  2. Summary: EXIF JPEG header manipulation tool
  3. Summary(ja): JPEG の EXIF ヘッダを操作するツール
  4. Version: 2.95
  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. * Fri Mar 23 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.95-1
  49. - updated to 2.95 (the newest version so far)
  50. - spec revamp; add comprehensive description (English/Japanese)
  51. * Sun Sep 28 2008 Shu KONNO <owa@bg.wakwak.com> 2.6-1vl5
  52. - applied new versioning policy
  53. * Fri Jun 2 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.6-0vl1
  54. - new upstream release
  55. - s/Copyright/License/
  56. - changed Group to Applications/Graphics
  57. * Sun Dec 2 2001 Jun Nishii <jun@vinelinux.org> 1.5-0vl1
  58. - first release