]> git.pld-linux.org Git - packages/gexiv2.git/blob - gexiv2.spec
- Up to 0.2.1
[packages/gexiv2.git] / gexiv2.spec
1 # TODO:
2 # - Add bcond for vapi support and subpackage
3
4 Summary:        GObject-based wrapper around the  Exiv2 library
5 Name:           gexiv2
6 Version:        0.2.1
7 Release:        1
8 License:        GPL
9 Group:          Applications/Graphics
10 Source0:        http://yorba.org/download/gexiv2/0.2/lib%{name}-%{version}.tar.bz2
11 # Source0-md5:  eda379b9a7b482988f55d5d79962d16b
12 URL:            http://trac.yorba.org/wiki/gexiv2
13 BuildRequires:  exiv2-devel >= 0.19
14 BuildRequires:  pkgconfig
15 BuildRequires:  vala
16 Requires:       exiv2-libs >= 0.19
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 gexiv2 is a GObject-based wrapper around the Exiv2 library. It makes
21 the basic features of Exiv2 available to GNOME applications.
22
23 %package devel
24 Summary:        GObject-based wrapper around the  Exiv2 library
25 Group:          Development/Libraries
26 Requires:       %{name} = %{version}-%{release}
27 Requires:       exiv2-devel >= 0.19
28
29 %description devel
30 gexiv2 development files
31
32 %package static
33 Summary:        GObject-based wrapper around the  Exiv2 library
34 Group:          Development/Libraries
35 Requires:       %{name} = %{version}-%{release}
36 Requires:       exiv2-static >= 0.19
37
38 %description static
39 gexiv2 static library
40
41 %prep
42 %setup -q -n lib%{name}-%{version}
43
44 %build
45 %{__libtoolize}
46 ./configure --prefix=%{_prefix}
47
48 %{__make} \
49         LIB="%{_lib}"
50
51 %install
52 rm -rf $RPM_BUILD_ROOT
53
54 %{__make} install \
55         DESTDIR=$RPM_BUILD_ROOT \
56         LIB="%{_lib}"
57
58 %clean
59 rm -rf $RPM_BUILD_ROOT
60
61 %files
62 %defattr(644,root,root,755)
63 %attr(755,root,root) %{_libdir}/lib%{name}.so.*.*.*
64 %attr(755,root,root) %ghost %{_libdir}/lib%{name}.so.0
65 %attr(755,root,root) %{_libdir}/lib%{name}.so
66
67 %files devel
68 %defattr(644,root,root,755)
69 %{_libdir}/lib%{name}.la
70 %{_includedir}/%{name}
71 %{_pkgconfigdir}/%{name}.pc
72 %{_datadir}/vala/vapi/gexiv2.vapi
73
74 %files static
75 %defattr(644,root,root,755)
76 %{_libdir}/lib%{name}.a
This page took 0.042536 seconds and 3 git commands to generate.