]> git.pld-linux.org Git - packages/eris.git/blame - eris.spec
- based on spec in sources, needs other libs to build
[packages/eris.git] / eris.spec
CommitLineData
2677d782
ER
1Summary: A WorldForge client library.
2Name: eris
3Version: 1.3.8
4Release: 0.1
5License: GPL
6Group: Libraries
7URL: http://www.worldforge.org/dev/eng/libraries/eris
8Source0: http://dl.sourceforge.net/worldforge/%{name}-%{version}.tar.bz2
9# Source0-md5: faf7c6d8237af53b93856c356a2de137
10BuildRequires: Atlas-C++-devel >= 0.5.98
11BuildRequires: wfmath-devel >= 0.3.2
12BuildRequires: skstream-devel >= 0.3.5
13Requires: Atlas-C++ >= 0.5.98
14Obsoletes: eris-poll-glib
15BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17%description
18Eris is designed to simplify client development (and avoid repeating
19the same work several times), by providing a common system to deal
20with the back end tasks.
21
22%package devel
23Summary: A WorldForge client library headers and static libs.
24Group: Development/Libraries
25Requires: %{name} = %{version}-%{release}
26Requires: Atlas-C++-devel
27Requires: wfmath-devel
28Requires: skstream-devel
29
30%description devel
31Eris is designed to simplify client development (and avoid repeating
32the same work several times), by providing a common system to deal
33with the back end tasks.
34
35%prep
36%setup -q
37
38%build
39CXXFLAGS=%{rpmcflags}
40%configure \
41 --enable-static
42%{__make}
43
44%install
45rm -rf $RPM_BUILD_ROOT
46%{__make} install \
47 DESTDIR=$RPM_BUILD_ROOT
48
49%clean
50rm -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.172209 seconds and 4 git commands to generate.