forked from langemeijer/phpstorm-deb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added build instructions to readme file
- Loading branch information
1 parent
d50a7c9
commit e6b9873
Showing
1 changed file
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,18 @@ | ||
phpstorm-deb | ||
============ | ||
|
||
Skeleton to easily create a .deb package for phpstorm | ||
Skeleton to easily create a .deb package for phpstorm | ||
|
||
|
||
How to create new phpstorm debian package based on this project | ||
=============================================================== | ||
|
||
* Download the .tar.gz file from this webpage http://www.jetbrains.com/phpstorm/download/index.html | ||
* Move the file into the directory where this file is in. | ||
|
||
* See if version number the top entry in file debian/changelog is the same as the version you've downloaded. If it's not, execute | ||
dch -v <new-version-number> -m "New upstream version" | ||
|
||
* Build the package with this command: | ||
debuild -us -uc -b | ||
|