]> git.pld-linux.org Git - packages/eris.git/blob - eris.spec
- based on spec in sources, needs other libs to build
[packages/eris.git] / eris.spec
1 Summary:        A WorldForge client library.
2 Name:           eris
3 Version:        1.3.8
4 Release:        0.1
5 License:        GPL
6 Group:          Libraries
7 URL:            http://www.worldforge.org/dev/eng/libraries/eris
8 Source0:        http://dl.sourceforge.net/worldforge/%{name}-%{version}.tar.bz2
9 # Source0-md5:  faf7c6d8237af53b93856c356a2de137
10 BuildRequires:  Atlas-C++-devel >= 0.5.98
11 BuildRequires:  wfmath-devel >= 0.3.2
12 BuildRequires:  skstream-devel >= 0.3.5
13 Requires:       Atlas-C++ >= 0.5.98
14 Obsoletes:      eris-poll-glib
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 Eris is designed to simplify client development (and avoid repeating
19 the same work several times), by providing a common system to deal
20 with the back end tasks.
21
22 %package devel
23 Summary:        A WorldForge client library headers and static libs.
24 Group:          Development/Libraries
25 Requires:       %{name} = %{version}-%{release}
26 Requires:       Atlas-C++-devel
27 Requires:       wfmath-devel
28 Requires:       skstream-devel
29
30 %description devel
31 Eris is designed to simplify client development (and avoid repeating
32 the same work several times), by providing a common system to deal
33 with the back end tasks.
34
35 %prep
36 %setup -q
37
38 %build
39 CXXFLAGS=%{rpmcflags}
40 %configure \
41         --enable-static
42 %{__make}
43
44 %install
45 rm -rf $RPM_BUILD_ROOT
46 %{__make} install \
47         DESTDIR=$RPM_BUILD_ROOT
48
49 %clean
50 rm -rf $RPM_BUILD_ROOT
51
52 %files
53 %defattr(644,root,root,755)
54 %attr(755,root,root) %{_libdir}/lib*.so.*
55 %doc AUTHORS COPYING NEWS README
56
57 %files devel
58 %defattr(644,root,root,755)
59 %attr(755,root,root) %{_libdir}/lib*.so
60 %{_libdir}/lib*.la
61 %{_libdir}/lib*.a
62 %{_pkgconfigdir}/*
63 %{_includedir}/*
This page took 0.071492 seconds and 3 git commands to generate.