mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
31 lines
1.4 KiB
Bash
31 lines
1.4 KiB
Bash
#Maintainer Matthijs Tadema <M dot J dot Tadema at pm dot me>
|
|
#Previous Maintainer Jens Staal <staal1978@gmail.com>
|
|
|
|
pkgname=ugene
|
|
pkgver=39.0
|
|
pkgrel=1
|
|
pkgdesc="A free cross-platform genome analysis suite (binary release)"
|
|
arch=('x86_64')
|
|
url="http://ugene.net"
|
|
license=('GPL')
|
|
depends=('libxtst' 'glu' 'qt5-webkit' 'qt5-websockets' 'qt5-svg' 'qt5-script' 'desktop-file-utils' 'qspec-git')
|
|
optdepends=('cufflinks' 'bowtie' 'clustalw' 'phyml' 'blast+' 'clustal-omega' 'vcftools' 'mrbayes' 'bwa' 'bedtools'
|
|
'tcoffee' 'hmmer' 'snpeff' 'samtools' 'mafft' 'trimmomatic' 'stringtie' 'kraken' 'diamond-aligner'
|
|
'python2-cutadapt' 'python' 'java-runtime' 'bowtie2' 'tophat' 'fastqc')
|
|
provides=('ugene')
|
|
conflicts=('ugene-git')
|
|
source=("https://github.com/ugeneunipro/ugene/releases/download/${pkgver}/ugene-${pkgver}-linux-x86-64.tar.gz" "ugene.desktop" "ugene.svg")
|
|
sha256sums=('f04fcfdf62703e9feba2fd6fd3b74b19cf676c65d312d0d3b08f5622dc2081cf'
|
|
'58aeee982faa07913c016323cdded0a4022695c4e313954fdc09c36742013896'
|
|
'5a159437635965cae796c968c7297fd098e7f86dcecbe6a97e62950e782641fc')
|
|
|
|
package() {
|
|
mkdir -p "${pkgdir}/usr/"{bin,share/{applications,icons,ugene}}
|
|
install -D -m 755 ugene.svg "${pkgdir}/usr/share/icons/ugene.svg"
|
|
cd "$srcdir/ugene-$pkgver"
|
|
chmod +x *
|
|
mv * $pkgdir/usr/share/ugene
|
|
ln -s /usr/share/ugene/ugene "$pkgdir"/usr/bin/ugene
|
|
install -D -m 755 ${srcdir}/*.desktop "${pkgdir}/usr/share/applications"
|
|
}
|
|
|