-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathbppsuite.spec
More file actions
116 lines (101 loc) · 3.71 KB
/
Copy pathbppsuite.spec
File metadata and controls
116 lines (101 loc) · 3.71 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
%define _prefix /usr
URL: https://github.com/BioPP
Name: bppsuite
Version: 2.4.1
Release: 1%{?dist}
License: CECILL-2.0
Vendor: The Bio++ Project
Source: %{name}-%{version}.tar.gz
Summary: The Bio++ Program Suite
Group: Productivity/Scientific/Other
Requires: libbpp-popgen8 = %{version}
Requires: libbpp-phyl12 = %{version}
Requires: libbpp-seq12 = %{version}
Requires: libbpp-core4 = %{version}
BuildRoot: %{_builddir}/%{name}-root
BuildRequires: cmake >= 2.8.11
BuildRequires: gcc-c++ >= 4.7.0
BuildRequires: groff
BuildRequires: texinfo >= 4.0.0
BuildRequires: libbpp-core4 = %{version}
BuildRequires: libbpp-core-devel = %{version}
BuildRequires: libbpp-seq12 = %{version}
BuildRequires: libbpp-seq-devel = %{version}
BuildRequires: libbpp-phyl12 = %{version}
BuildRequires: libbpp-phyl-devel = %{version}
BuildRequires: libbpp-popgen8 = %{version}
BuildRequires: libbpp-popgen-devel = %{version}
AutoReq: yes
AutoProv: yes
%if 0%{?mdkversion}
%if 0%{?mdkversion} >= 201100
BuildRequires: xz
%define compress_program xz
%else
BuildRequires: lzma
%define compress_program lzma
%endif
%else
BuildRequires: gzip
%define compress_program gzip
%endif
%description
Bio++ program suite includes programs:
- BppML for maximum likelihood analysis,
- BppSeqGen for sequences simulation,
- BppAncestor for ancestral states reconstruction,
- BppDist for distance methods,
- BppPars for parsimony analysis,
- BppSeqMan for file conversion and sequence manipulation,
- BppConsense for building consensus tree and computing bootstrap values,
- BppReRoot for tree rerooting.
- BppTreeDraw for tree drawing.
- BppAlnScore for comparing alignments and computing alignment scores.
- BppPopStats for population genetics.
- BppMixedLikelioods for computing the site per site likelihoods of submodels from a mixture model.
%prep
%setup -q
%build
CFLAGS="$RPM_OPT_FLAGS"
CMAKE_FLAGS="-DCMAKE_INSTALL_PREFIX=%{_prefix} -DCOMPRESS_PROGRAM=%{compress_program}"
cmake $CMAKE_FLAGS .
make
%install
make DESTDIR=$RPM_BUILD_ROOT install
%clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%doc AUTHORS.txt COPYING.txt INSTALL.txt ChangeLog
%{_prefix}/bin/*
%{_prefix}/share/info/*.info*
%{_prefix}/share/man/man1/*.1*
%changelog
* Wed Aug 15 2018 Julien Dutheil <[email protected]> 2.4.1-1
* Mon Mar 12 2018 Julien Dutheil <[email protected]> 2.4.0-1
* Tue Jun 06 2017 Julien Dutheil <[email protected]> 2.3.1-1
* Wed May 10 2017 Julien Dutheil <[email protected]> 2.3.0-1
- New BppPopStats program
- BppPhySamp is now distributed separately
- Several bugs fixed and improvements
* Mon Sep 29 2014 Julien Dutheil <[email protected]> 2.2.0-1
- Compatibility update. Bio++ Program Suite version number is now indexed
on Bio++'s version.
- Programs support the --seed argument for setting the random seed.
- bppSeqGen supports generic characters as input.
- bppPhySamp outputs sampled trees.
* Fri Mar 08 2013 Julien Dutheil <[email protected]> 0.8.0-1
- New models for proteins (COaLA)
- New program bppMixedLikelihoods
* Wed Feb 15 2012 Julien Dutheil <[email protected]> 0.7.0-1
- More models, sequence formats and bugs fixed. New bppAlnScore program.
* Thu Jun 09 2011 Julien Dutheil <[email protected]> 0.6.2-1
* Mon Feb 28 2011 Julien Dutheil <[email protected]> 0.6.1-1
* Mon Feb 07 2011 Julien Dutheil <[email protected]> 0.6.0-1
* Thu Mar 25 2010 Julien Dutheil <[email protected]> 0.5.0-1
* Wed Jun 10 2009 Julien Dutheil <[email protected]> 0.4.0-1
* Thu Dec 11 2008 Julien Dutheil <[email protected]> 0.3.1-1
* Tue Sep 23 2008 Julien Dutheil <[email protected]> 0.3.0-1
- Initial spec file.