]> git.pld-linux.org Git - packages/Atlas-C++.git/blob - Atlas-C++.spec
- use new %doc infrastructure.
[packages/Atlas-C++.git] / Atlas-C++.spec
1 Summary:        C++ reference implementation of the Atlas protocol
2 Summary(pl):    Implementacja protoko³u Atlas
3 Name:           Atlas-C++
4 Version:        0.4.4
5 Release:        1
6 License:        LGPL
7 Group:          Libraries
8 Source0:        ftp://victor.worldforge.org/pub/worldforge/libs/Atlas-C++/%{name}-%{version}.tar.gz
9 BuildRequires:  autoconf
10 BuildRequires:  automake
11 BuildRequires:  libtool
12 BuildRequires:  libstdc++-devel
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 Atlas-C++ is the current C++ implementation of the Atlas protocol, a
17 communications layer designed to be used in the WorldForge MMORPG
18 gaming system. This library is suitable for linking to either clients
19 xor servers.
20
21 %description -l pl
22 Atlas-C++ jest implementacj± (w jêzyku C++) protoko³u Atlas, warstwy
23 komunikacyjnej przeznaczonej do systemów WorldForge MMORPG. Bibliotekê
24 tê przygotowano zarówno dla aplikacji klienckich, jak i serwerów.
25
26 %package devel
27 Summary:        Header files for Atlas-C++ development
28 Summary(pl):    Pliki nag³ówkowe do biblioteki Atlas-C++
29 Group:          Development/Libraries
30 Requires:       %{name} = %{version}
31 Requires:       libstdc++-devel
32
33 %description devel
34 Atlas-C++ is the current C++ implementation of the Atlas protocol, a
35 communications layer designed to be used in the WorldForge MMORPG
36 gaming system. This library is suitable for linking to either clients
37 or servers.
38
39 This package contains the header files needed to develop programs that
40 use these Atlas-C++
41
42 %description devel -l pl
43 Atlas-C++ jest implementacj± (w jêzyku C++) protoko³u Atlas, warstwy
44 komunikacyjnej przeznaczonej do systemów WorldForge MMORPG. Bibliotekê
45 tê przygotowano zarówno dla aplikacji klienckich, jak i serwerów.
46
47 Pakiet zawiera pliki nag³ówkowe niezbêdne do kompilowania programów
48 u¿ywaj±cych bibliotek Atlas-C++.
49
50 %package static
51 Summary:        Static libraries for Atlas-C++ development
52 Summary(pl):    Statyczne biblioteki Atlas-C++
53 Group:          Development/Libraries
54 Requires:       %{name}-devel = %{version}
55
56 %description static
57 Atlas-C++ is the current C++ implementation of the Atlas protocol, a
58 communications layer designed to be used in the WorldForge MMORPG
59 gaming system. This library is suitable for linking to either clients
60 or servers.
61
62 This package contains the static Atlas-C++ libraries.
63
64 %description static -l pl
65 Atlas-C++ jest implementacj± (w jêzyku C++) protoko³u Atlas, warstwy
66 komunikacyjnej przeznaczonej do systemów WorldForge MMORPG. Bibliotekê
67 tê przygotowano zarówno dla aplikacji klienckich, jak i serwerów.
68
69 Pakiet zawiera statyczne biblioteki Atlas-C++.
70
71 %prep
72 %setup -q
73
74 %build
75 aclocal
76 autoheader
77 libtoolize --automake --copy --force
78 automake --add-missing --copy --gnu --force
79 %{__autoconf}
80 %configure
81 %{__make}
82
83 %install
84 rm -rf $RPM_BUILD_ROOT
85
86 %{__make} install DESTDIR=$RPM_BUILD_ROOT
87
88 %clean
89 rm -rf $RPM_BUILD_ROOT
90
91 %post   -p /sbin/ldconfig
92 %postun -p /sbin/ldconfig
93
94 %files
95 %defattr(644,root,root,755)
96 %doc AUTHORS ChangeLog NEWS README
97 %attr(755,root,root) %{_libdir}/lib*.so.*.*
98
99 %files devel
100 %defattr(644,root,root,755)
101 %attr(755,root,root) %{_bindir}/atlas-config
102 %{_includedir}/Atlas
103 %attr(755,root,root) %{_libdir}/lib*.la
104 %{_libdir}/lib*.so
105 %{_aclocaldir}/atlas.m4
106
107 %files static
108 %defattr(644,root,root,755)
109 %{_libdir}/lib*.a
This page took 0.04662 seconds and 4 git commands to generate.