]> git.pld-linux.org Git - packages/iksemel.git/blob - iksemel.spec
- typos / formatting / etc.
[packages/iksemel.git] / iksemel.spec
1 Summary:        Library for the Jabber instant-messaging IM platform
2 Summary(pl):    Biblioteka dla platformy komunikacyjnej Jabbera
3 Name:           iksemel
4 Version:        1.1
5 Release:        1
6 License:        LGPL
7 Group:          Libraries
8 Source0:        http://files.jabberstudio.org/iksemel/%{name}-%{version}.tar.gz
9 # Source0-md5:  3ab98b92fa051d513ca0d6377ceb50f6
10 URL:            http://iksemel.jabberstudio.org/
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 BuildRequires:  libtool
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 Iksemel is a C library for the Jabber instant-messaging IM platform.
18 Iksemel handles Jabber connections, parses XML, and sends and receives
19 Jabber messages. It works pretty good for parsing other kinds of XML,
20 too, if the need arises.
21
22 %description -l pl
23 Iksemel jest bibliotek± C dla platformy komunikacyjnej Jabbera. Iksemel 
24 obs³uguje po³±czenia Jabbera, analizuje XML oraz wysy³a i odbiera 
25 komunikaty Jabbera. Dzia³a dobrze parsuj±c tak¿e inne rodzaje XML-a, 
26 je¶li jest taka potrzeba.
27
28 %package devel
29 Summary:        Iksemel library development files
30 Summary(pl):    Pliki dla programistów u¿ywaj±cych biblioteki Iksemel
31 Group:          Development/Libraries
32 Requires:       %{name} = %{version}
33
34 %description devel
35 Iksemel library development files.
36
37 %description devel -l pl
38 Pliki dla programistów u¿ywaj±cych biblioteki Iksemel.
39
40 %package static
41 Summary:        Static Iksemel library
42 Summary(pl):    Statyczna wersja biblioteki Iksemel
43 Group:          Development/Libraries
44 Requires:       %{name}-devel = %{version}
45
46 %description static
47 Static Iksemel library.
48
49 %description static -l pl
50 Statyczna wersja biblioteki Iksemel.
51
52 %prep
53 %setup -q
54
55 %build
56 %{__libtoolize}
57 %{__aclocal}
58 %{__autoconf}
59 %{__autoheader}
60 %{__automake}
61 %configure
62 %{__make}
63
64 %install
65 rm -rf $RPM_BUILD_ROOT
66
67 %{__make} install DESTDIR=$RPM_BUILD_ROOT
68
69 %clean
70 rm -rf $RPM_BUILD_ROOT
71
72 %post   -p /sbin/ldconfig
73 %postun -p /sbin/ldconfig
74
75 %files
76 %defattr(644,root,root,755)
77 %doc README ChangeLog
78 %attr(755,root,root) %{_libdir}/*.so.*.*
79
80 %files devel
81 %defattr(644,root,root,755)
82 %attr(755,root,root) %{_libdir}/*.so
83 %{_libdir}/*.la
84 %{_includedir}/*
85
86 %files static
87 %defattr(644,root,root,755)
88 %{_libdir}/*.a
This page took 0.09518 seconds and 3 git commands to generate.