author | Dustin Lundquist <dustin@null-ptr.net> | 2013-03-05 00:06:26 (UTC) |
---|---|---|
committer | Dustin Lundquist <dustin@null-ptr.net> | 2013-03-05 00:06:26 (UTC) |
commit | 29ac9dd2166aaad86a9555ad3a409ad1d2bb479c (patch) (unidiff) | |
tree | 470fc9a4f38506a35f85de8d1b9465e6bb9a3aad | |
parent | 9a249065f37c49a8277864dd7c1e7e1ce6bdb639 (diff) | |
download | libopkele-29ac9dd2166aaad86a9555ad3a409ad1d2bb479c.zip libopkele-29ac9dd2166aaad86a9555ad3a409ad1d2bb479c.tar.gz libopkele-29ac9dd2166aaad86a9555ad3a409ad1d2bb479c.tar.bz2 |
Adding expat build dep
-rw-r--r-- | libopkele.spec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopkele.spec b/libopkele.spec index 8b598dc..35f6d7c 100644 --- a/libopkele.spec +++ b/libopkele.spec | |||
@@ -1,73 +1,73 @@ | |||
1 | Summary: a c++ implementation of an OpenID decentralized identity system | 1 | Summary: a c++ implementation of an OpenID decentralized identity system |
2 | Name: libopkele | 2 | Name: libopkele |
3 | Version: 2.0.4 | 3 | Version: 2.0.4 |
4 | Release: 1 | 4 | Release: 1 |
5 | License: GPL | 5 | License: GPL |
6 | URL: http://kin.klever.net/libopkele/ | 6 | URL: http://kin.klever.net/libopkele/ |
7 | Source0: %{name}-%{version}.tar.gz | 7 | Source0: %{name}-%{version}.tar.gz |
8 | BuildRoot: %{_tmppath}/%{name}-%{version}-root | 8 | BuildRoot: %{_tmppath}/%{name}-%{version}-root |
9 | BuildRequires: gcc-c++ openssl-devel libcurl-devel libtidy-devel | 9 | BuildRequires: gcc-c++ openssl-devel libcurl-devel libtidy-devel expat-devel |
10 | 10 | ||
11 | %description | 11 | %description |
12 | libopkele is a c++ implementation of an OpenID decentralized identity system. | 12 | libopkele is a c++ implementation of an OpenID decentralized identity system. |
13 | It provides OpenID protocol handling, leaving authentication and user | 13 | It provides OpenID protocol handling, leaving authentication and user |
14 | interaction to the implementor. | 14 | interaction to the implementor. |
15 | 15 | ||
16 | %prep | 16 | %prep |
17 | %setup -q | 17 | %setup -q |
18 | 18 | ||
19 | %build | 19 | %build |
20 | %configure | 20 | %configure |
21 | 21 | ||
22 | make %{?_smp_mflags} | 22 | make %{?_smp_mflags} |
23 | 23 | ||
24 | %install | 24 | %install |
25 | rm -rf %{buildroot} | 25 | rm -rf %{buildroot} |
26 | %make_install | 26 | %make_install |
27 | 27 | ||
28 | %clean | 28 | %clean |
29 | rm -rf %{buildroot} | 29 | rm -rf %{buildroot} |
30 | 30 | ||
31 | %post | 31 | %post |
32 | ldconfig | 32 | ldconfig |
33 | 33 | ||
34 | %postun | 34 | %postun |
35 | ldconfig | 35 | ldconfig |
36 | 36 | ||
37 | %files | 37 | %files |
38 | %{_libdir}/libopkele.a | 38 | %{_libdir}/libopkele.a |
39 | %{_libdir}/libopkele.la | 39 | %{_libdir}/libopkele.la |
40 | %{_libdir}/libopkele.so | 40 | %{_libdir}/libopkele.so |
41 | %{_libdir}/libopkele.so.3 | 41 | %{_libdir}/libopkele.so.3 |
42 | %{_libdir}/libopkele.so.3.0.0 | 42 | %{_libdir}/libopkele.so.3.0.0 |
43 | %{_libdir}/pkgconfig/libopkele.pc | 43 | %{_libdir}/pkgconfig/libopkele.pc |
44 | 44 | ||
45 | %package devel | 45 | %package devel |
46 | Summary: Development headers for libopkele | 46 | Summary: Development headers for libopkele |
47 | Requires: %{name} = %{version} | 47 | Requires: %{name} = %{version} |
48 | 48 | ||
49 | %description devel | 49 | %description devel |
50 | libopkele is a c++ implementation of an OpenID decentralized identity system. | 50 | libopkele is a c++ implementation of an OpenID decentralized identity system. |
51 | It provides OpenID protocol handling, leaving authentication and user | 51 | It provides OpenID protocol handling, leaving authentication and user |
52 | interaction to the implementor. | 52 | interaction to the implementor. |
53 | 53 | ||
54 | %files devel | 54 | %files devel |
55 | %dir %{_includedir}/opkele | 55 | %dir %{_includedir}/opkele |
56 | %{_includedir}/opkele/acconfig.h | 56 | %{_includedir}/opkele/acconfig.h |
57 | %{_includedir}/opkele/association.h | 57 | %{_includedir}/opkele/association.h |
58 | %{_includedir}/opkele/ax.h | 58 | %{_includedir}/opkele/ax.h |
59 | %{_includedir}/opkele/basic_op.h | 59 | %{_includedir}/opkele/basic_op.h |
60 | %{_includedir}/opkele/basic_rp.h | 60 | %{_includedir}/opkele/basic_rp.h |
61 | %{_includedir}/opkele/exception.h | 61 | %{_includedir}/opkele/exception.h |
62 | %{_includedir}/opkele/extension.h | 62 | %{_includedir}/opkele/extension.h |
63 | %{_includedir}/opkele/extension_chain.h | 63 | %{_includedir}/opkele/extension_chain.h |
64 | %{_includedir}/opkele/iterator.h | 64 | %{_includedir}/opkele/iterator.h |
65 | %{_includedir}/opkele/oauth_ext.h | 65 | %{_includedir}/opkele/oauth_ext.h |
66 | %{_includedir}/opkele/opkele-config.h | 66 | %{_includedir}/opkele/opkele-config.h |
67 | %{_includedir}/opkele/prequeue_rp.h | 67 | %{_includedir}/opkele/prequeue_rp.h |
68 | %{_includedir}/opkele/sreg.h | 68 | %{_includedir}/opkele/sreg.h |
69 | %{_includedir}/opkele/tr1-mem.h | 69 | %{_includedir}/opkele/tr1-mem.h |
70 | %{_includedir}/opkele/types.h | 70 | %{_includedir}/opkele/types.h |
71 | %{_includedir}/opkele/uris.h | 71 | %{_includedir}/opkele/uris.h |
72 | %{_includedir}/opkele/util.h | 72 | %{_includedir}/opkele/util.h |
73 | %{_includedir}/opkele/verify_op.h | 73 | %{_includedir}/opkele/verify_op.h |