]> git.pld-linux.org Git - packages/libexif.git/blob - libexif.spec
- merge from DEVEL (not for Ra)
[packages/libexif.git] / libexif.spec
1 Summary:        Library for parsing EXIF files from digital cameras
2 Summary(pl):    Biblioteka do czytania plików EXIF z kamer cyfrowych
3 Name:           libexif
4 Version:        0.5.4
5 Release:        2
6 Epoch:          1
7 License:        MIT
8 Group:          Libraries
9 Source0:        ftp://ftp.sourceforge.net/pub/sourceforge/libexif/%{name}-%{version}.tar.bz2
10 URL:            http://libexif.sourceforge.net/
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12 Obsoletes:      libexif7
13
14 %description
15 Most digital cameras produce EXIF files, which are JPEG files with extra
16 tags that contain information about the image. The EXIF library allows
17 you to parse an EXIF file and read the data from those tags.
18
19 %description -l pl
20 Wiêkszo¶æ kamer cyfrowych tworzy pliki EXIF, które s± JPEGami z
21 dodatkowymi znacznikami zawieraj±cymi informacje o obrazie. Biblioteka
22 EXIF pozwala czytaæ informacje z tych znaczników.
23
24 %package devel
25 Summary:        Header files for libexif
26 Summary(pl):    Pliki nag³ówkowe dla libexif
27 Group:          Development/Libraries
28 Requires:       %{name} = %{version}
29 Obsoletes:      libexif7-devel
30
31 %description devel
32 Header files for libexif.
33
34 %description devel -l pl
35 Pliki nag³ówkowe dla libexif.
36
37 %package static
38 Summary:        Static version of libexif
39 Summary(pl):    Statyczna wersja libexif
40 Group:          Development/Libraries
41 Requires:       %{name} = %{version}
42
43 %description static
44 Static version of libexif.
45
46 %description static -l pl
47 Statyczna wersja libexif.
48
49 %prep
50 %setup -q
51
52 %build
53 %configure
54
55 %{__make}
56
57 %install
58 rm -rf $RPM_BUILD_ROOT
59
60 %{__make} install DESTDIR=$RPM_BUILD_ROOT
61
62 %find_lang %{name}
63
64 %clean
65 rm -rf $RPM_BUILD_ROOT
66
67 %post   -p /sbin/ldconfig
68 %postun -p /sbin/ldconfig
69
70 %files -f %{name}.lang
71 %defattr(644,root,root,755)
72 %doc README ChangeLog
73 %attr(755,root,root) %{_libdir}/*.so.*.*.*
74
75 %files devel
76 %defattr(644,root,root,755)
77 %attr(755,root,root) %{_libdir}/*.la
78 %attr(755,root,root) %{_libdir}/*.so
79 %{_includedir}/%{name}
80 %{_pkgconfigdir}/*
81
82 %files static
83 %defattr(644,root,root,755)
84 %{_libdir}/*.a
This page took 0.026836 seconds and 3 git commands to generate.