-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdomalign.spec
More file actions
64 lines (48 loc) · 1.64 KB
/
domalign.spec
File metadata and controls
64 lines (48 loc) · 1.64 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
Summary: EMBOSS:DOMALIGN Applications
Name: DOMALIGN
Version: 0.1.0
Release: 7.%{distro}
license: GPL
Group: Applications/Bioinformatics
Source: ftp://emboss.open-bio.org/pub/EMBOSS/%{name}-%{version}.tar.gz
BuildPrereq: EMBOSS-devel = 6.1.0
BuildRoot: %{_tmppath}/%{name}-buildroot
Prereq: EMBOSS = 6.1.0
%description
The DOMALIGN programs were developed by Jon Ison and colleagues at HGMP for
their protein domain research. They are included as an EMBASSY package as a
work in progress.
%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}/*
%{_datadir}/EMBOSS/acd/*
%{_datadir}/EMBOSS/doc/html/embassy/domalign/*
%{_datadir}/EMBOSS/doc/programs/text/*
%changelog
* Mon Jan 11 2010 Sean Collins <contact@seanmcollins.com> 0.1.0-7
- Rebuilt for EMBOSS 6.1.0
* Mon Jul 23 2007 Ryan Golhar <golharam@umdnj.edu> 0.1.0-6
- Rebuilt for EMBOSS 5.0.0
* Wed Mar 7 2007 Ryan Golhar <golharam@umdnj.edu> 0.1.0-5
- Rebuilt for EMBOSS 4.1.0
* Thu Nov 2 2006 Ryan Golhar <golharam@umdnj.edu> 0.1.0-4
- Changed the application to Applications/Bioinformatics
* Fri Aug 11 2006 Ryan Golhar <golharam@umdnj.edu> 0.1.0-3
- Rebuilt for EMBOSS 4.0.0
* Wed Dec 7 2005 Ryan Golhar <golharam@umdnj.edu> 0.1.0-2
- Changed binary directory from /usr/local/bin to /usr/bin
* Wed Jul 20 2005 Ryan Golhar <golharam@umdnj.edu> 0.1.0-1
- Initial construction