xap/fiji: Added fiji-3215.

slackware-14.2
Damien Goutte-Gattat 10 years ago
parent 979f6286ab
commit 670394b1fd

@ -0,0 +1,5 @@
#!/bin/sh
if [ -x /usr/bin/update-desktop-database ]; then
/usr/bin/update-desktop-database ./usr/share/applications >/dev/null 2>&1
fi

@ -0,0 +1 @@
bbbd055eb838f9d4b0fd1479c18968ddef74b94b fiji-nojre.zip

@ -0,0 +1,96 @@
#!/bin/bash
# Build script for Slackware
# Copyright (C) 2013 Damien Goutte-Gattat
#
# Redistribution and use of this script, with or without modifications,
# 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.
#
# Contact: Damien Goutte-Gattat <dgouttegattat@incenp.org>
#
# Latest fiji-nojre sourcecode is available at: <http://fiji.sc/>.
# Source package infos
NAMESRC=${NAMESRC:-fiji-nojre}
VERSION=${VERSION:-3215}
ARCHIVE=${ARCHIVE:-$NAMESRC.zip}
WGET=${WGET:-http://jenkins.imagej.net/job/Stable-Fiji/$VERSION/artifact/$ARCHIVE}
# Build infos
NAMEPKG=${NAMEPKG:-fiji}
BUILD=${BUILD:-1GGD}
ARCH=${ARCH:-$(uname -m | sed 's/^i.86$/i486/;s/^arm.*/arm/')}
EXT=${EXT:-txz}
# Directories
TMP=${TMP:-/tmp}
OUT=${OUT:-$TMP/build}
PKG=${PKG:-$OUT/$NAMEPKG}
CWD=$(pwd)
set -e # Quit if a command returns non-zero
# Sanity checks
if [ $UID -eq 0 ]; then
echo "You should NOT run this script as ROOT!"
exit 1
fi
if [ ! -d $TMP ]; then
echo "$TMP does not exists or is not a directory!"
exit 1
fi
# Get and verify the source archive
if [ ! -r $ARCHIVE ]; then
wget -c -O $ARCHIVE.part "$WGET"
mv $ARCHIVE.part $ARCHIVE
fi
sha1sum -c $ARCHIVE.sha1
# Extract
mkdir -p $PKG/usr/lib $PKG/usr/bin
cd $PKG/usr/lib
unzip $CWD/$ARCHIVE
mv Fiji.app fiji
cd fiji
rm -rf Contents ImageJ-win??.exe
if [ "x$ARCH" = xx86_64 ]; then
rm ImageJ-linux32
ln -s /usr/lib/fiji/ImageJ-linux64 $PKG/usr/bin/imagej
else
rm ImageJ-linux64
ln -s /usr/lib/fiji/ImageJ-linux32 $PKG/usr/bin/imagej
fi
install -D -m 644 $CWD/fiji.desktop $PKG/usr/share/applications/fiji.desktop
# Copy slack-desc and doinst.sh files
install -D -m 644 $CWD/slack-desc $PKG/install/slack-desc
install -m 755 $CWD/doinst.sh $PKG/install/doinst.sh
# Package the tree
cd $PKG
mkdir -p $OUT
PACKAGING="
chown root:root . -R
/sbin/makepkg -l y -c n $OUT/$NAMEPKG-$VERSION-$ARCH-$BUILD.$EXT
rm -rf $PKG
"
if type -p fakeroot ; then
echo "$PACKAGING" | fakeroot
else
su -c "$PACKAGING"
fi

@ -0,0 +1,14 @@
[Desktop Entry]
Version=1.0
Name=Fiji Is Just ImageJ
GenericName=Fiji Is Just ImageJ
X-GNOME-FullName=Fiji Is Just ImageJ
Comment=Scientific Image Analysis
Type=Application
Categories=Education;Science;ImageProcessing;
Exec=/home/damien/Downloads/soft/Fiji.app/ImageJ-linux64
TryExec=/home/damien/Downloads/soft/Fiji.app/ImageJ-linux64
Terminal=false
StartupNotify=true
Icon=/home/damien/Downloads/soft/Fiji.app/images/icon.png
StartupWMClass=fiji-Main

@ -0,0 +1,12 @@
|-----handy-ruler---------------------------------------------------------|
fiji: fiji (ImageJ image processing program and plugins)
fiji:
fiji: Fiji (Fiji Is Just ImageJ is an image processing package. It can be
fiji: described as a distribution of ImageJ together with a lot of plugins
fiji: organized into a coherent menu sructure.
fiji:
fiji: The main focus of Fiji is to assist research in life sciences.
fiji:
fiji:
fiji:
fiji:
Loading…
Cancel
Save