]> git.pld-linux.org Git - packages/exiftags.git/blob - exiftags.spec
- added -Makefile.patch
[packages/exiftags.git] / exiftags.spec
1 Summary:        A digital camera image meta-data (Exif) parser
2 Summary(pl.UTF-8):      Analizator metadanych (Exif) obrazów z aparatów cyfrowych
3 Name:           exiftags
4 Version:        1.01
5 Release:        1
6 License:        BSD
7 Group:          Applications/Multimedia
8 Source0:        http://johnst.org/sw/exiftags/%{name}-%{version}.tar.gz
9 # Source0-md5:  9d5bce968fdde2dc24ba49c0024dc0cc
10 Patch0:         %{name}-Makefile.patch
11 URL:            http://johnst.org/sw/exiftags/
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 exiftags parses a JPEG file looking for Exif (Exchangeable Image File)
16 data, formatting and printing image properties. Digital cameras
17 typically add Exif data to the image files they produce containing
18 information about the camera and digitized image. exiftags includes
19 support for some camera manufacturer-specific properties.
20
21 An included companion utility, exifcom, displays and writes the
22 UserComment Exif tag that some cameras include in the image metadata
23 they create. This program is useful for recording caption or location
24 information in the image file itself.
25
26 %description -l pl.UTF-8
27 exiftags analizuje plik JPEG poszukując danych Exif (Exchangeable
28 Image File), formatując i wypisując własności obrazu. Aparaty cyfrowe
29 zwykle dodają do produkowanych przez siebie plików graficznych dane
30 Exif, zawierające informacje o aparacie i obrazie cyfrowym. exiftags
31 obsługuje niektóre własności specyficzne dla poszczególnych
32 producentów aparatów.
33
34 Dołączone narzędzie towarzyszące, exifcom, wyświetla i zapisuje
35 znacznik Exif UserComment, dołączany przez niektóre aparaty. Ten
36 program jest przydatny do zapisywania podpisów lub informacji 
37 o miejscu w samym obrazku.
38
39 %prep
40 %setup -q
41 %patch0 -p1
42
43 %build
44 %{__make} \
45         CC="%{__cc}" \
46         CFLAGS="%{rpmcflags}" \
47         LDFLAGS="%{rpmldflags}"
48
49 %install
50 rm -rf $RPM_BUILD_ROOT
51
52 install -D exiftags $RPM_BUILD_ROOT%{_bindir}/exiftags
53 install -D exifcom $RPM_BUILD_ROOT%{_bindir}/exifcom
54 install -D exiftime $RPM_BUILD_ROOT%{_bindir}/exiftime
55 install -D exiftags.1 $RPM_BUILD_ROOT%{_mandir}/man1/exiftags.1
56 install -D exifcom.1 $RPM_BUILD_ROOT%{_mandir}/man1/exifcom.1
57 install -D exiftime.1 $RPM_BUILD_ROOT%{_mandir}/man1/exiftime.1
58
59 %clean
60 rm -rf $RPM_BUILD_ROOT
61
62 %files
63 %defattr(644,root,root,755)
64 %doc README CHANGES
65 %attr(755,root,root) %{_bindir}/*
66 %{_mandir}/man?/*
This page took 0.065715 seconds and 3 git commands to generate.