mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
academic/aline: Added (Tk graphical interface for Perl)
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
This commit is contained in:
parent
c10df1cb0c
commit
a536adc58e
8 changed files with 142 additions and 0 deletions
16
academic/aline/README
Normal file
16
academic/aline/README
Normal file
|
@ -0,0 +1,16 @@
|
|||
Aline: An Extensible WYSIWYG Protein Sequence Alignment Editor for
|
||||
Publication Quality Figures.
|
||||
|
||||
Aline is an interactive perl/tk application which can read common
|
||||
sequence alignment formats which the user can then alter, embellish,
|
||||
markup etc to produce the kind of sequence figure commonly found in
|
||||
biochemical articles.
|
||||
|
||||
Please cite:
|
||||
Bond, C.S. and Schüttelkopf, A.W. (2009), Acta cryst. D65, 510-512
|
||||
|
||||
NOTE:
|
||||
Although not needed for running Aline, clustalw and mkDSSP are
|
||||
desirable for its complete functionality. A third tool is CHAINSAW,
|
||||
part of the CCP4 suite (http://www.ccp4.ac.uk/). Visit the web site
|
||||
for more information and installation instructions if you want it.
|
4
academic/aline/References
Normal file
4
academic/aline/References
Normal file
|
@ -0,0 +1,4 @@
|
|||
Please cite
|
||||
Bond, C.S. and Schüttelkopf, A.W. (2009), Acta cryst.
|
||||
D65, 510-512
|
||||
http://crystal.bcs.uwa.edu.au/px/charlie/software/aline/actad_65_510.pdf
|
82
academic/aline/aline.SlackBuild
Normal file
82
academic/aline/aline.SlackBuild
Normal file
|
@ -0,0 +1,82 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for aline
|
||||
|
||||
# Copyright 2013 Petar Petrov, ppetrov@paju.oulu.fi
|
||||
# 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=aline
|
||||
VERSION=${VERSION:-1.0.025}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
SRCVER=011208
|
||||
ARCH=noarch
|
||||
|
||||
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
|
||||
rm -rf ${PRGNAM}_${SRCVER}
|
||||
tar xvf $CWD/${PRGNAM}_${SRCVER}.tar.gz
|
||||
cd ${PRGNAM}_${SRCVER}
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
# Point aline to the correct paths of its colour schemes, examples,
|
||||
# plugins and scripts.
|
||||
sed -i "s:%%SELFcolourschemes:/usr/share/$PRGNAM/colourschemes:g" bin/aline
|
||||
sed -i "s:%%SELFexample:/usr/share/$PRGNAM/example:g" bin/aline
|
||||
sed -i "s:%%SELFplugins:/usr/share/$PRGNAM/plugins:g" bin/aline
|
||||
sed -i "s:%%SELFscripts:/usr/share/$PRGNAM/scripts:g" bin/aline
|
||||
|
||||
install -D -m755 bin/$PRGNAM $PKG/usr/bin/$PRGNAM
|
||||
install -D -m755 bin/convertdump $PKG/usr/bin/convertdump
|
||||
|
||||
mkdir -p $PKG/usr/share/$PRGNAM/
|
||||
cp -a \
|
||||
colourschemes example plugins \
|
||||
$PKG/usr/share/$PRGNAM/
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/References > $PKG/usr/doc/$PRGNAM-$VERSION/References
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
# Couldn't find an icon, so I assembled this thing from the program's logo...
|
||||
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}
|
8
academic/aline/aline.desktop
Normal file
8
academic/aline/aline.desktop
Normal file
|
@ -0,0 +1,8 @@
|
|||
[Desktop Entry]
|
||||
Name=Aline
|
||||
Comment=A Protein Sequence Alignment Editor
|
||||
Exec=aline
|
||||
Icon=aline
|
||||
StartupNotify=false
|
||||
Type=Application
|
||||
Categories=Education;
|
10
academic/aline/aline.info
Normal file
10
academic/aline/aline.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="aline"
|
||||
VERSION="1.0.025"
|
||||
HOMEPAGE="http://crystal.bcs.uwa.edu.au/px/charlie/software/aline/"
|
||||
DOWNLOAD="http://crystal.bcs.uwa.edu.au/px/charlie/software/aline/aline_011208.tar.gz"
|
||||
MD5SUM="6e462b37bb016de731a3352cc9503cd9"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="perl-tk"
|
||||
MAINTAINER="Petar Petrov"
|
||||
EMAIL="ppetrov@paju.oulu.fi"
|
BIN
academic/aline/aline.png
Normal file
BIN
academic/aline/aline.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
3
academic/aline/doinst.sh
Normal file
3
academic/aline/doinst.sh
Normal file
|
@ -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
|
19
academic/aline/slack-desc
Normal file
19
academic/aline/slack-desc
Normal file
|
@ -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------------------------------------------------------|
|
||||
aline: aline (A Sequence Alignment Editor and Viewer)
|
||||
aline:
|
||||
aline: Aline: An Extensible WYSIWYG Protein Sequence Alignment Editor
|
||||
aline: Publication Quality Figures. Aline is an interactive perl/tk
|
||||
aline: application which can read common sequence alignment formats
|
||||
aline: which the user can then alter, embellish, markup etc to produce
|
||||
aline: the kind of sequence figure commonly found in biochemical articles.
|
||||
aline:
|
||||
aline: Home: http://crystal.bcs.uwa.edu.au/px/charlie/software/aline/
|
||||
aline: References: /usr/doc/aline-$VERSION/References
|
||||
aline:
|
Loading…
Reference in a new issue