Hi *
i've finally found time to make the .deb of imagej, here you
can find .deb and other usefull things:
http://www.personalweb.unito.it/paolo.ariano/imagej.htmlThings could be done better but this is just the first
step, hope this help.
Till Next
Paolo
PS for the problem of two plugins directory the installer
does it with:
PLUGINSDIR=$HOME/.imagej
mkdir -p $PLUGINSDIR/plugins
mkdir -p $PLUGINSDIR/macro
for p in $(ls /usr/share/imagej/plugins) ; do
if [ ! -h $PLUGINSDIR/plugins/$p ] ; then
ln -s /usr/share/imagej/plugins/$p $PLUGINSDIR/plugins/$p
fi
done
for p in $(ls /usr/share/imagej/macro) ; do
if [ ! -h $PLUGINSDIR/macro/$p ] ; then
ln -s /usr/share/imagej/macro/$p $PLUGINSDIR/macro/$p
fi
done
--
Paolo Ariano
Neuroscience PhD @ UniTo