updated on Thu Jan 26 12:02:26 UTC 2012
[aur-mirror.git] / cufflinks / PKGBUILD
blob5b38f05d088f55869dd1ed2e3c0c9fe3b63d3560
1 # Maintainer: Thiago Yukio Kikuchi Oliveira <stratust@gmail.com>
3 pkgname=cufflinks
4 pkgver=1.3.0
5 pkgrel=1
6 pkgdesc="Cufflinks assembles transcripts, estimates their abundances, and tests for differential expression and regulation in RNA-Seq samples.."
7 arch=("x86_64")
8 url="http://cufflinks.cbcb.umd.edu"
9 license=('Artistic')
10 depends=('boost' 'python2' 'samtools' 'perl')
11 source=(http://cufflinks.cbcb.umd.edu/downloads/$pkgname-$pkgver.tar.gz)
12 md5sums=('6914059cf8c8f22eb388e1fde44deabe')
14 build() {
15   cd $srcdir/$pkgname-$pkgver
17   # cufflinks use python2 but archlinux uses python3 as default python
18   perl -i -pne '$_ =~ s/python/python2/ if $_ =~ /^#!\/usr/' src/cuffmerge 
20   ./configure --prefix="$pkgdir/usr"
21   make
22   make install