File rna-star.spec of Package rna-star
#
# spec file for package rna-star
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: rna-star
Version: 2.7.1a
Release: 0
Summary: Spliced Aligner for RNAseq
License: GPL-3.0-only
Group: Productivity/Scientific/Other
URL: https://github.com/alexdobin/STAR/
Source: https://github.com/alexdobin/STAR/archive/STAR-%{version}.tar.gz
BuildRequires: gcc-c++
BuildRequires: zlib-devel
%description
STAR (Spliced Transcripts Alignment to a Reference) is an ultrafast RNAseq spliced aligner
designed to align cDNA reads from high-throughput RNAseq to a reference genome. STAR can
discover non-canonical splices and chimeric (fusion) transcripts, and is also capable of
mapping full-length RNA sequences. STAR is implemented as a standalone C++ code.
%prep
%setup -q -n STAR-%{version}
%build
cd source
make %{?_smp_mflags} STAR COMPTIMEPLACE=-DCOMPILATION_TIME_PLACE=\\\"OBS\\\"
%install
mkdir -p %{buildroot}/%{_bindir}
install -m755 source/STAR %{buildroot}/%{_bindir}
%files
%license LICENSE
%doc README.md RELEASEnotes.md CHANGES.md
%doc doc/STARmanual.pdf
%{_bindir}/STAR
%changelog