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