diff options
author | Petar Petrov <slackalaxy@gmail.com> | 2016-12-19 06:48:22 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-12-24 07:33:34 +0700 |
commit | f2cdc95488314ca924b16e8a6b5ac65fe434013f (patch) | |
tree | 0ae7b87a7dec578cf194ffd37696104368c8efe4 /academic | |
parent | 12cb5c2c382284d3d6b32854394d470197ee9407 (diff) | |
download | slackbuilds-f2cdc95488314ca924b16e8a6b5ac65fe434013f.tar.gz |
academic/wehi-cellsymphony: Added (Audio representation).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'academic')
-rw-r--r-- | academic/wehi-cellsymphony/README | 8 | ||||
-rw-r--r-- | academic/wehi-cellsymphony/doinst.sh | 3 | ||||
-rw-r--r-- | academic/wehi-cellsymphony/slack-desc | 19 | ||||
-rw-r--r-- | academic/wehi-cellsymphony/wehi-cellsymphony.SlackBuild | 58 | ||||
-rw-r--r-- | academic/wehi-cellsymphony/wehi-cellsymphony.desktop | 8 | ||||
-rw-r--r-- | academic/wehi-cellsymphony/wehi-cellsymphony.info | 10 | ||||
-rw-r--r-- | academic/wehi-cellsymphony/wehi-cellsymphony.png | bin | 0 -> 1147 bytes |
7 files changed, 106 insertions, 0 deletions
diff --git a/academic/wehi-cellsymphony/README b/academic/wehi-cellsymphony/README new file mode 100644 index 0000000000..105dbf8208 --- /dev/null +++ b/academic/wehi-cellsymphony/README @@ -0,0 +1,8 @@ +The Cellular Symphony is an audio representation of flow cytometric +data. Each cell is represented by musical notes of timbre, pitch and +volume dependent on its FCM parameters. The program correlates the +audio output with 2D and 3D graphical display. + +It may be that only a musical savant can detect the intricacies in a +3-instrument cellular symphony or it may be that the average +cytometrist also can do so with practice. diff --git a/academic/wehi-cellsymphony/doinst.sh b/academic/wehi-cellsymphony/doinst.sh new file mode 100644 index 0000000000..5fb28930db --- /dev/null +++ b/academic/wehi-cellsymphony/doinst.sh @@ -0,0 +1,3 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi diff --git a/academic/wehi-cellsymphony/slack-desc b/academic/wehi-cellsymphony/slack-desc new file mode 100644 index 0000000000..c07d3f5b17 --- /dev/null +++ b/academic/wehi-cellsymphony/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +wehi-cellsymphony: wehi-cellsymphony (Audio representation of flow cytometric data) +wehi-cellsymphony: +wehi-cellsymphony: The Cellular Symphony is an audio representation of flow cytometric +wehi-cellsymphony: data. Each cell is represented by musical notes of timbre, pitch and +wehi-cellsymphony: volume dependent on its FCM parameters. The program correlates the +wehi-cellsymphony: audio output with 2D and 3D graphical display. +wehi-cellsymphony: +wehi-cellsymphony: Home: http://www.frankbattye.com.au/freesoftware.html +wehi-cellsymphony: +wehi-cellsymphony: +wehi-cellsymphony: diff --git a/academic/wehi-cellsymphony/wehi-cellsymphony.SlackBuild b/academic/wehi-cellsymphony/wehi-cellsymphony.SlackBuild new file mode 100644 index 0000000000..67a0093fc0 --- /dev/null +++ b/academic/wehi-cellsymphony/wehi-cellsymphony.SlackBuild @@ -0,0 +1,58 @@ +#!/bin/sh + +# Slackware build script for wehi-cellsymphony + +# Copyright 2016 Petar Petrov slackalaxy@gmail.com +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=wehi-cellsymphony +VERSION=${VERSION:-20130721} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +ARCH=noarch +SRCNAM=CellSymphony + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP + +install -D -m755 $CWD/$SRCNAM.jar $PKG/usr/bin/$PRGNAM.jar + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/usr/share/{applications,pixmaps} +cp $CWD/$PRGNAM.desktop $PKG/usr/share/applications +cp $CWD/$PRGNAM.png $PKG/usr/share/pixmaps + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/academic/wehi-cellsymphony/wehi-cellsymphony.desktop b/academic/wehi-cellsymphony/wehi-cellsymphony.desktop new file mode 100644 index 0000000000..391b69ef52 --- /dev/null +++ b/academic/wehi-cellsymphony/wehi-cellsymphony.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Type=Application +Exec=java -jar /usr/bin/wehi-cellsymphony.jar +Terminal=false +Name=Flow cytometry CellSymphony +Comment=Audio representation of flow cytometric data +Icon=wehi-cellsymphony.png +Categories=Education; diff --git a/academic/wehi-cellsymphony/wehi-cellsymphony.info b/academic/wehi-cellsymphony/wehi-cellsymphony.info new file mode 100644 index 0000000000..a6a5e7c3b2 --- /dev/null +++ b/academic/wehi-cellsymphony/wehi-cellsymphony.info @@ -0,0 +1,10 @@ +PRGNAM="wehi-cellsymphony" +VERSION="20130721" +HOMEPAGE="http://www.frankbattye.com.au/freesoftware.html" +DOWNLOAD="http://www.frankbattye.com.au/downloads/CellSymphony.jar" +MD5SUM="d7c3b806491f7922742271a4dfcdb58c" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="jdk" +MAINTAINER="Petar Petrov" +EMAIL="slackalaxy@gmail.com" diff --git a/academic/wehi-cellsymphony/wehi-cellsymphony.png b/academic/wehi-cellsymphony/wehi-cellsymphony.png Binary files differnew file mode 100644 index 0000000000..6cfd986f6c --- /dev/null +++ b/academic/wehi-cellsymphony/wehi-cellsymphony.png |