1 |
Name: aifad |
2 |
Version: 2.0.2 |
3 |
Release: %mkrel 4 |
4 |
Summary: Machine learning system - Automated Induction of Functions over Algebraic Datatypes |
5 |
License: GPL |
6 |
Group: Development/OCaml |
7 |
URL: https://bitbucket.org/mmottl/aifad |
8 |
Source0: https://bitbucket.org/mmottl/aifad/downloads/aifad-%{version}.tar.gz |
9 |
BuildRequires: ocaml-compiler |
10 |
BuildRequires: ocaml-findlib |
11 |
BuildRequires: ocaml-cfg-devel |
12 |
BuildRequires: ocaml-res-devel |
13 |
BuildRequires: ocaml-pcre-devel |
14 |
BuildRequires: menhir |
15 |
|
16 |
%description |
17 |
AIFAD stands for "Automated Induction of Functions over Algebraic Datatypes" |
18 |
and improves decision tree learning by supporting significantly more complex |
19 |
kinds of data. This allows users to more conveniently describe the data they |
20 |
want to have learnt, which can improve accuracy and complexity of resulting |
21 |
models. |
22 |
|
23 |
%prep |
24 |
%setup -q |
25 |
|
26 |
%build |
27 |
./configure \ |
28 |
--bindir %{_bindir} \ |
29 |
--destdir %{buildroot} |
30 |
|
31 |
make |
32 |
|
33 |
%install |
34 |
rm -rf %{buildroot} |
35 |
make install |
36 |
|
37 |
install -d %{buildroot}%{_datadir}/vim/syntax/ |
38 |
install -m 0644 ./vim/aifad.vim %{buildroot}%{_datadir}/vim/syntax/ |
39 |
|
40 |
%files |
41 |
%doc README.md AUTHORS.txt COPYING.txt CHANGES.txt TODO.md |
42 |
%doc examples/ |
43 |
%{_bindir}/aifad |
44 |
%{_datadir}/vim/syntax/aifad.vim |