intellij-idea-community/intellij-idea-community_201.../debian/postinst

20 lines
493 B
Plaintext
Raw Normal View History

2015-12-08 11:55:30 +01:00
#!/bin/bash
cd /opt/
## Extract the package
sudo tar xf /opt/ideaIC-*
## Rename the directory
sudo mv /opt/idea-IC-* /opt/intellij-idea-community
## Remove the tar.gz package
sudo rm /opt/ideaIC-*
## Make /usr/bin usable
sudo mv /usr/bin/intellij-idea-community.sh /usr/bin/intellij-idea-community
## Install the .desktop file, if necessary
if [ -x "/usr/bin/desktop-file-install" ]; then
sudo /usr/bin/desktop-file-install /usr/share/applications/intellij-idea-community.desktop
fi