-
Notifications
You must be signed in to change notification settings - Fork 1
/
drFAST.spec
48 lines (30 loc) · 989 Bytes
/
drFAST.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
Name: drFAST
Version: 0.0.0.3
Release: 1%{?dist}
Summary: di-base read Fast Alignment Search Tool
Group: Applications/Engineering
License: Redistributable
URL: http://drfast.sourceforge.net
Source0: http://downloads.sourceforge.net/drfast/%{name}-%{version}.zip
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: zlib-devel
%description
drFAST is designed to map short reads generated with the AB Solid platform to
reference genome assemblies; in a fast and memory-efficient manner.
%prep
%setup -q
%build
make %{?_smp_mflags} CFLAGS="%{optflags} -c" LDFLAGS="-lz -lm"
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}%{_bindir}
install -m 0755 drfast %{buildroot}%{_bindir}
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc README.txt
%{_bindir}/drfast
%changelog
* Fri Jul 29 2011 Adam Huffman <bloch@verdurin.com> - 0.0.0.3-1
- initial version