]> git.pld-linux.org Git - packages/flickcurl.git/blob - flickcurl.spec
noarch apidocs
[packages/flickcurl.git] / flickcurl.spec
1 Summary:        Flickcurl - C library for the Flickr API
2 Summary(pl.UTF-8):      Flickcurl - biblioteka C do API serwisu Flickr
3 Name:           flickcurl
4 Version:        1.26
5 Release:        2
6 License:        LGPL v2.1+ or GPL v2+ or Apache v2.0
7 Group:          Libraries
8 Source0:        http://download.dajobe.org/flickcurl/%{name}-%{version}.tar.gz
9 # Source0-md5:  7013a36656400dac398748a374c9104f
10 URL:            http://dajobe.org/
11 BuildRequires:  curl-devel >= 7.10.0
12 BuildRequires:  gtk-doc >= 1.3
13 BuildRequires:  libraptor2-devel >= 2.0.0
14 BuildRequires:  libxml2-devel >= 1:2.6.8
15 BuildRequires:  pkgconfig
16 Requires:       curl >= 7.10.0
17 Requires:       libraptor2 >= 2.0.0
18 Requires:       libxml2 >= 1:2.6.8
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %description
22 Flickcurl is a C library for the Flickr API.
23
24 %description -l pl.UTF-8
25 Flickcurl to biblioteka C do API serwisu Flickr.
26
27 %package devel
28 Summary:        Flickcurl development files
29 Summary(pl.UTF-8):      Pliki programistyczne biblioteki Flickcurl
30 Group:          Development/Libraries
31 Requires:       %{name} = %{version}-%{release}
32 Requires:       curl-devel >= 7.10.0
33 Requires:       libraptor2-devel >= 2.0.0
34 Requires:       libxml2-devel >= 1:2.6.8
35
36 %description devel
37 This package contains the include files used to develop using
38 Flickcurl APIs.
39
40 %description devel -l pl.UTF-8
41 Ten pakiet zawiera pliki nagłówkow służące do programowania z użyciem
42 API Flickcurl.
43
44 %package static
45 Summary:        The Flickcurl static libraries
46 Summary(pl.UTF-8):      Statyczne biblioteki Flickcurl
47 Group:          Development/Libraries
48 Requires:       %{name}-devel = %{version}-%{release}
49
50 %description static
51 This package contains the Flickcurl static libraries.
52
53 %description static -l pl.UTF-8
54 Ten pakiet zawiera statyczne biblioteki Flickcurl.
55
56 %package apidocs
57 Summary:        API documentation for Flickcurl library
58 Summary(pl.UTF-8):      Dokumentacja API biblioteki Flickcurl
59 Group:          Documentation
60 %if "%{_rpmversion}" >= "5"
61 BuildArch:      noarch
62 %endif
63
64 %description apidocs
65 API documentation for Flickcurl library.
66
67 %description apidocs -l pl.UTF-8
68 Dokumentacja API biblioteki Flickcurl.
69
70 %package tools
71 Summary:        The Flickcurl utility tools
72 Summary(pl.UTF-8):      Programy narzędziowe do biblioteki Flickcurl
73 Group:          Applications/Network
74 Requires:       %{name} = %{version}-%{release}
75
76 %description tools
77 This package contains the Flickcurl utility tools.
78
79 %description tools -l pl.UTF-8
80 Ten pakiet zawiera programy narzędziowe do biblioteki Flickcurl.
81
82 %prep
83 %setup -q
84
85 %build
86 %configure \
87         --with-html-dir=%{_gtkdocdir}
88
89 %{__make}
90
91 %install
92 rm -rf $RPM_BUILD_ROOT
93
94 %{__make} install \
95         DESTDIR=$RPM_BUILD_ROOT
96
97 # obsoleted by pkg-config
98 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libflickcurl.la
99
100 %clean
101 rm -rf $RPM_BUILD_ROOT
102
103 %post   -p /sbin/ldconfig
104 %postun -p /sbin/ldconfig
105
106 %files
107 %defattr(644,root,root,755)
108 %doc AUTHORS LICENSE.html NEWS NOTICE README.html
109 %attr(755,root,root) %{_libdir}/libflickcurl.so.*.*.*
110 %attr(755,root,root) %ghost %{_libdir}/libflickcurl.so.0
111
112 %files devel
113 %defattr(644,root,root,755)
114 %attr(755,root,root) %{_bindir}/flickcurl-config
115 %attr(755,root,root) %{_libdir}/libflickcurl.so
116 %{_includedir}/flickcurl.h
117 %{_pkgconfigdir}/flickcurl.pc
118 %{_mandir}/man1/flickcurl-config.1*
119
120 %files static
121 %defattr(644,root,root,755)
122 %{_libdir}/libflickcurl.a
123
124 %files apidocs
125 %defattr(644,root,root,755)
126 %{_gtkdocdir}/flickcurl
127
128 %files tools
129 %defattr(644,root,root,755)
130 %attr(755,root,root) %{_bindir}/flickcurl
131 %attr(755,root,root) %{_bindir}/flickrdf
132 %{_mandir}/man1/flickcurl.1*
133 %{_mandir}/man1/flickrdf.1*
This page took 0.059062 seconds and 3 git commands to generate.