mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-06 08:26:50 +01:00
academic/cufflinks: use binaries
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
f703b64e18
commit
cd2507649b
3 changed files with 31 additions and 46 deletions
|
@ -11,6 +11,8 @@ Berkeley, Steven Salzberg's computational genomics group at the
|
|||
Institute of Genetic Medicine at Johns Hopkins University, and Barbara
|
||||
Wold's lab at Caltech.
|
||||
|
||||
NOTE: This just repackages the binaries provided from upstream.
|
||||
|
||||
Reference:
|
||||
Ali Mortazavi, Brian A Williams, Kenneth McCue, Lorian Schaeffer and
|
||||
Barbara Wold, "Mapping and quantifying mammalian transcriptomes by
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for cufflinks
|
||||
|
||||
# Copyright 2013-2019 Petar Petrov slackalaxy@gmail.com
|
||||
# Copyright 2013-2021 Petar Petrov slackalaxy@gmail.com
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -22,21 +22,22 @@
|
|||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
# With help from Archlinux AUR and Gentoo:
|
||||
# https://aur.archlinux.org/packages/cufflinks/
|
||||
# http://euscan.iksaif.net/package/sci-biology/cufflinks/
|
||||
# For Slackware 15.0 I switched to just repackaging the upstream binaries.
|
||||
# When I find a patch that fixes the build against boost and a bunch of other
|
||||
# fixes, I will revert back to source build. Let's have ot like this for now.
|
||||
|
||||
PRGNAM=cufflinks
|
||||
VERSION=${VERSION:-2.2.1}
|
||||
BUILD=${BUILD:-1}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
ARCH="$( uname -m )"
|
||||
fi
|
||||
|
||||
if [ "$ARCH" != "x86_64" ]; then
|
||||
printf "\n\n$ARCH is not supported... \n" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
|
@ -44,28 +45,14 @@ TMP=${TMP:-/tmp/SBo}
|
|||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
rm -rf $PRGNAM-${VERSION}.Linux_${ARCH}
|
||||
tar xvf $CWD/$PRGNAM-${VERSION}.Linux_${ARCH}.tar.gz
|
||||
cd $PRGNAM-${VERSION}.Linux_${ARCH}
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
|
@ -73,22 +60,17 @@ find -L . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
export EIGEN_CPPFLAGS="-I/usr/include/eigen3"
|
||||
# Just in case...
|
||||
sed -i "s:python:python2:" cuffmerge
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--sysconfdir=/etc \
|
||||
--disable-optim \
|
||||
--with-boost-libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
install -D -m755 cuffcompare $PKG/usr/bin/cuffcompare
|
||||
install -D -m755 cuffdiff $PKG/usr/bin/cuffdiff
|
||||
install -D -m755 cufflinks $PKG/usr/bin/cufflinks
|
||||
install -D -m755 cuffmerge $PKG/usr/bin/cuffmerge
|
||||
install -D -m755 cuffnorm $PKG/usr/bin/cuffnorm
|
||||
install -D -m755 cuffquant $PKG/usr/bin/cuffquant
|
||||
install -D -m755 gffread $PKG/usr/bin/gffread
|
||||
install -D -m755 gtf_to_sam $PKG/usr/bin/gtf_to_sam
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
PRGNAM="cufflinks"
|
||||
VERSION="2.2.1"
|
||||
HOMEPAGE="http://cufflinks.cbcb.umd.edu/"
|
||||
DOWNLOAD="http://cole-trapnell-lab.github.io/cufflinks/assets/downloads/cufflinks-2.2.1.tar.gz"
|
||||
MD5SUM="9a5ba7a7710cd864932cf205c17851f0"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
DOWNLOAD="UNSUPPORTED"
|
||||
MD5SUM=""
|
||||
DOWNLOAD_x86_64="http://cole-trapnell-lab.github.io/cufflinks/assets/downloads/cufflinks-2.2.1.Linux_x86_64.tar.gz"
|
||||
MD5SUM_x86_64="7e693d182dcfda8aeef8523219ea9ea7"
|
||||
REQUIRES="samtools-legacy"
|
||||
MAINTAINER="Petar Petrov"
|
||||
EMAIL="slackalaxy@gmail.com"
|
||||
|
||||
|
|
Loading…
Reference in a new issue