Astah (Application)

From campisano.org
Jump to navigation Jump to search

NOTE: According with Astah site, this is the last community version that can be used for commercial scope

from http://astah.net/com-announcement:

'Astah Community has not been allowed for commercial use since version 7.0.'

NOTE: A version of the old jude-community 5.5 can be found in webarchive at this folder or in a anonymous google drive file.

Inside such packages, there is no license info that restricts its distribution...

# shared/opt install schema v1.5.6

#### as common user ####
# define applications vars
export SOFTWARE_PATH="/home/shared/opt/software"
export NAME="jude"
export VERSION="5.5"
export URL="https://archive.org/download/jude-community/JUDE-Community.zip"
su - -w SOFTWARE_PATH,NAME,VERSION

#### as root ####
# install packages and prepare destination path
apt-get -q -y install wget coreutils findutils < /dev/null
apt-get -q -y install unzip < /dev/null
mkdir -m 777 "${SOFTWARE_PATH}/tmp_install/" "${SOFTWARE_PATH}/${NAME}_${VERSION}/"
exit

#### as common user ####
umask 0027
cd "${SOFTWARE_PATH}/tmp_install"
wget -c --no-check-certificate "${URL}"
unzip JUDE-Community.zip
mv JUDE-Community/* "${SOFTWARE_PATH}/${NAME}_${VERSION}"
cd
su - -w SOFTWARE_PATH,NAME,VERSION

#### as root ####
# ensure permissions to destination path
cd "${SOFTWARE_PATH}"
chown -R root:users "${NAME}_${VERSION}"
find "${NAME}_${VERSION}" -type d -exec chmod a-s,u+rwx,g+rx,g-w,o-rwx {} \;
find "${NAME}_${VERSION}" -type f -exec chmod a-s,u+rw,g+r,g-w,o-rwx {} \;
rm -rf tmp_install
ln -s -f -T "${NAME}_${VERSION}" "${NAME}"
exit

#### as common user ####
# test the application
java -Djava.security.manager=allow -jar "${SOFTWARE_PATH}/${NAME}/jude-community.jar"