forked from BioPP/bpp-phyl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbpp-phyl.spec
128 lines (108 loc) · 4.37 KB
/
bpp-phyl.spec
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
117
118
119
120
121
122
123
124
125
126
127
%define _prefix /usr
URL: https://github.com/BioPP/bpp-phyl
Name: bpp-phyl
Version: 2.4.1
Release: 1%{?dist}
License: CECILL-2.0
Vendor: The Bio++ Project
Source: %{name}-%{version}.tar.gz
Summary: Bio++ Phylogenetics library
Group: Development/Libraries/C and C++
Requires: bpp-core = %{version}
Requires: bpp-seq = %{version}
BuildRoot: %{_builddir}/%{name}-root
BuildRequires: cmake >= 2.8.11
BuildRequires: gcc-c++ >= 4.7.0
BuildRequires: libbpp-core4 = %{version}
BuildRequires: libbpp-core-devel = %{version}
BuildRequires: libbpp-seq12 = %{version}
BuildRequires: libbpp-seq-devel = %{version}
AutoReq: yes
AutoProv: yes
%description
This library contains utilitary and classes for phylogenetics and molecular evolution analysis.
It is part of the Bio++ project.
%package -n libbpp-phyl12
Summary: Bio++ Phylogenetics library
Group: Development/Libraries/C and C++
%description -n libbpp-phyl12
This library contains utilitary and classes for phylogenetics and molecular evolution analysis.
It is part of the Bio++ project.
%package -n libbpp-phyl-devel
Summary: Libraries, includes to develop applications with %{_basename}
Group: Development/Libraries/C and C++
Requires: libbpp-phyl12 = %{version}
Requires: libbpp-seq12 = %{version}
Requires: libbpp-seq-devel = %{version}
Requires: libbpp-core4 = %{version}
Requires: libbpp-core-devel = %{version}
%description -n libbpp-phyl-devel
The libbpp-phyl-devel package contains the header files and static libraries for
building applications which use %{name}.
%prep
%setup -q
%build
CFLAGS="$RPM_OPT_FLAGS"
CMAKE_FLAGS="-DCMAKE_INSTALL_PREFIX=%{_prefix} -DBUILD_TESTING=OFF"
cmake $CMAKE_FLAGS .
make
%install
make DESTDIR=$RPM_BUILD_ROOT install
%clean
rm -rf $RPM_BUILD_ROOT
%post -n libbpp-phyl12 -p /sbin/ldconfig
%postun -n libbpp-phyl12 -p /sbin/ldconfig
%files -n libbpp-phyl12
%defattr(-,root,root)
%doc AUTHORS.txt COPYING.txt INSTALL.txt ChangeLog
%{_prefix}/%{_lib}/lib*.so.*
%files -n libbpp-phyl-devel
%defattr(-,root,root)
%doc AUTHORS.txt COPYING.txt INSTALL.txt ChangeLog
%dir %{_prefix}/%{_lib}/cmake/
%dir %{_prefix}/%{_lib}/cmake/bpp-phyl
%{_prefix}/%{_lib}/lib*.so
%{_prefix}/%{_lib}/lib*.a
%{_prefix}/%{_lib}/cmake/bpp-phyl/bpp-phyl*.cmake
%{_prefix}/include/*
%changelog
* Mon Aug 13 2018 Julien Dutheil <[email protected]> 2.4.1-1
- Compatibility update gcc8
* Mon Mar 12 2018 Julien Dutheil <[email protected]> 2.4.0-1
- Increased interface number
- Removed dynamic exceptions specifications.
* Tue Jun 06 2017 Julien Dutheil <[email protected]> 2.3.1-1
- Increased interface number
* Wed May 10 2017 Julien Dutheil <[email protected]> 2.3.0-1
- Several bugs fixed and performance improvements
- Upgrade to C++11
* Mon Sep 28 2014 Julien Dutheil <[email protected]> 2.2.0-1
- Bugs fixed + code improvements
- More efficient DR likelihood derivatives.
* Thu Mar 07 2013 Julien Dutheil <[email protected]> 2.1.0-1
- New RateDistribution classes
- New models for protein sequences (COaLA)
- Support for gaps in parsimony score
- Improved and extended support for BppO
- Several bugs fixed and warnings removed
* Thu Feb 09 2012 Julien Dutheil <[email protected]> 2.0.3-1
- Reorganized model hierarchy
- New pairwise models
- Several bugs fixed
* Thu Jun 09 2011 Julien Dutheil <[email protected]> 2.0.2-1
- New substitution models, new substitution mapping tools.
* Mon Feb 28 2011 Julien Dutheil <[email protected]> 2.0.1-1
* Mon Feb 07 2011 Julien Dutheil <[email protected]> 2.0.0-1
* Thu Mar 25 2010 Julien Dutheil <[email protected]> 1.9.0-1
* Wed Jun 10 2009 Julien Dutheil <[email protected]> 1.8.0-1
* Thu Dec 11 2008 Julien Dutheil <[email protected]> 1.7.0-1
* Wed Sep 24 2008 Julien Dutheil <[email protected]> 1.6.0-1
* Mon Jul 21 2008 Julien Dutheil <[email protected]> 1.5.1-1
* Fri Jan 18 2008 Julien Dutheil <[email protected]> 1.5.0-1
* Sat Jul 06 2007 Julien Dutheil <[email protected]> 1.4.0-1
* Sat Jan 27 2007 Julien Dutheil <[email protected]> 1.3.1-1
* Fri Jan 19 2007 Julien Dutheil <[email protected]> 1.3.0-1
* Mon Aug 28 2006 Julien Dutheil <[email protected]> 1.2.0-1
* Tue Apr 18 2006 Julien Dutheil <[email protected]> 1.1.0-1
* Fri Nov 16 2005 Julien Dutheil <[email protected]> 1.0.0-1
- First draft of the spec file