-
Notifications
You must be signed in to change notification settings - Fork 0
/
fix8.spec.in
86 lines (77 loc) · 3.19 KB
/
fix8.spec.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
Summary: C++ Development Library and Engine for the FIX protocol
Name: fix8
%define fullversion @VERSION@
Prefix: %{_prefix}
Version: @VERSION@
Release: @BUILD_NUMBER_DATE@
License: LGPL
Group: Development/Libraries
URL: http://www.fix8.org
Vendor: David L. Dight
Source: https://github.com/dakka/fix8/archive/%{name}-%{fullversion}.tar.gz
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root
Requires: poco-net >= 1.4
Requires: poco-foundation >= 1.4
BuildRequires: poco-devel >= 1.4
BuildRequires: perl-XML-Parser
#ExcludeArch: %{arm}
%description
A modern open source C++ FIX framework featuring complete schema driven customisation, high
performance and fast application development.
Fix8 helps you get your FIX client or server up and running quickly. Using one of the standard
FIX schemas you can have a FIX client or server up and running in next to no time.
Statically compile your FIX xml schema and quickly build your FIX application on top.
If you need to add customised messages or fields, simply update the schema and recompile.
Fix8 supports standard FIX4.X to FIX5.X and FIXT1.X. If you have a custom FIX variant Fix8
can use that too. New FIX versions will be supported.
Fix8 offers run-time custom fields, message recycling and a meta-data aware test harness.
Incorporates lock free queues, atomics and many other modern techniques.
Fix8 is a complete C++ FIX framework, including client/server session and connection classes;
support for the standard FIX field types; FIX printer, async logger, async message persister
and XML configuration classes.
Fix8 is the fastest C++ Open Source FIX framework. Our testing shows that Fix8 is on average 68% faster
encoding/decoding the same message than Quickfix.
Fix8 statically supports nested components and groups.
The Fix8 compiler and runtime library takes the pain out of using repeating groups.
The code generated by Fix8 is compiled by your compiler offering the best opportunity for optimisation.
Fix8 applications are fast. On production level hardware, client NewOrderSingle encode latency is now 2.2us,
and ExecutionReport decode 4.5us. Without the framework overhead, NewOrderSingle encode latency is 1.4us.
This is being continually improved.
Fix8 provides a flexible platform to develop your application on.
Fix8 supports field and value domain validation, mandatory/optional field assertion, field ordering,
well-formedness testing, retransmission and standard session semantics.
Fix8 runs on industry standard Linux. Other NIX variants may work too.
%prep
%setup -n %{name}-%{version}
%build
%configure --with-sleep=250 --enable-gtest=no --enable-doxygen-warnings=no
%{__make}
%install
%make_install
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,0755)
%{_bindir}/f8c
%{_bindir}/f8print
%{_bindir}/f8test
%{_bindir}/harness
%{_bindir}/hfprint
%{_bindir}/seqedit
%{_bindir}/hftest
%{_libdir}/libfix8.la
%{_libdir}/libfix8.so
%{_libdir}/libfix8.so.0
%{_libdir}/libfix8.so.0.0.0
%{_libdir}/libhftest.la
%{_libdir}/libhftest.so
%{_libdir}/libhftest.so.0
%{_libdir}/libhftest.so.0.0.0
%{_libdir}/libmyfix.la
%{_libdir}/libmyfix.so
%{_libdir}/libmyfix.so.0
%{_libdir}/libmyfix.so.0.0.0
%{_exec_prefix}/include/fix8
%{_exec_prefix}/share/fix8
%changelog
@CHANGELOG@