1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
Name: @PACKAGE@
Summary: A utility to display EXIF headers from JPEG files
Version: @VERSION@
Release: 1
Source: http://downloads.sourceforge.net/project/libexif/exif/%{version}/exif-%{version}.tar.bz2
Url: http://libexif.sourceforge.net/
Group: Applications/Multimedia
License: LGPL
BuildRoot: %{_tmppath}/%{name}-%{version}-root
BuildRequires: libexif-devel
Requires: libexif
%description
'exif' is a small command-line utility to show EXIF information hidden
in JPEG files. It was written to demonstrate the power of libexif.
%prep
%setup
%build
%configure
make
%install
rm -rf $RPM_BUILD_ROOT
%makeinstall
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc ChangeLog README NEWS
%{_bindir}/*
%{_mandir}/man*/*
%{_datadir}/locale/*/LC_MESSAGES/*.mo
|