Build scripts to easily create a .deb
package for PhpStorm.
You will need the devscripts
debhelper
php
and php-curl
packages installed in order to build the PhpStorm .deb
file:
apt-get install devscripts debhelper php php-curl
- Run the
download_latest.php
file
php download_latest.php
This will execute all steps described below.
-
Download the
.tar.gz
file from PhpStorm's download page and place it in the root directory of this repo. -
Create a new debian/changelog file using the provided update.sh script:
./update.sh
- Build the package with the following command:
debuild -us -uc -b
- Please 'Star' or 'Watch' the repo on github: https://github.com/langemeijer/phpstorm-deb/stargazers
Install the package with the dpkg
command:
dpkg -i PhpStorm...
Alternatively, you can create your own simple repo or
more professional one to host your custom deb
packages.