-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeme.spec
More file actions
68 lines (50 loc) · 2.01 KB
/
Copy pathmeme.spec
File metadata and controls
68 lines (50 loc) · 2.01 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
Summary: EMBOSS:MEME Applications
Name: MEME
Version: 0.1.0
Release: 5.%{distro}
license: GPL
Group: Applications/Bioinformatics
Source: ftp://emboss.open-bio.org/pub/EMBOSS/MEME-%{version}.tar.gz
BuildPrereq: EMBOSS-devel = 6.1.0
BuildRoot: %{_tmppath}/%{name}-buildroot
Prereq: EMBOSS = 6.1.0
Obsoletes: MEMENEW
%description
The MEMENEW package is an EMBOSS conversion of the MEME package from Timothy L. Bailey.
The MEME versions of these programs all have the same name as the original programs. Thsi is not our usual policy, and we may change the names to add a prefix (usually "e") ni a future release.
Although we take care to check that the EMBOSS versions will give the same results as the original programs, we recommend that if the results are used for publication you should check that you get the same results with both for your specific inputs.
%prep
%setup -q
%build
./configure CFLAGS="$RPM_OPT_FLAGS" --prefix=/usr \
--bindir=%{_bindir} \
--with-thread=linux
make -j2
%install
[ "$RPM_BUILD_ROOT" != "/" ] && rm -fr $RPM_BUILD_ROOT
make DESTDIR=$RPM_BUILD_ROOT install
%clean
[ "$RPM_BUILD_ROOT" != "/" ] && rm -fr $RPM_BUILD_ROOT
%files
%defattr(755,root,root)
%doc AUTHORS ChangeLog COPYING INSTALL
%{_bindir}/emast
%{_bindir}/ememe
%{_datadir}/EMBOSS/acd/*
%{_datadir}/EMBOSS/doc/html/embassy/memenew/*
%{_datadir}/EMBOSS/doc/programs/text/*
%changelog
* Mon Jan 11 2010 Sean Collins <contact@seanmcollins.com> 0.1.0-5
- Rebuilt for EMBOSS 6.1.0
* Mon Jul 23 2007 Ryan Golhar <golharam@umdnj.edu> 0.1.0-4
- Rebuilt for EMBOSS 5.0.0
* Wed Mar 7 2007 Ryan Golhar <golharam@umdnj.edu> 0.1.0-3
- Rebuilt for EMBOSS 4.1.0
* Thu Nov 2 2006 Ryan Golhar <golharam@umdnj.edu> 0.1.0-2
- Changed the application to Applications/Bioinformatics
* Thu Aug 17 2006 Ryan Golhar <golharam@umdnj.edu>
- Rebuilt for MEMENEW and EMBOSS 4.0.0
* Wed Dec 7 2005 Ryan Golhar <golharam@umdnj.edu>
- Changed binary directory from /usr/local/bin to /usr/bin
* Wed Jul 20 2005 Ryan Golhar <golharam@umdnj.edu>
- Initial construction