diff options
| author | Andrew <saintruler@gmail.com> | 2020-07-30 10:16:13 -0400 |
|---|---|---|
| committer | Andrew <saintruler@gmail.com> | 2020-07-30 10:16:13 -0400 |
| commit | 44af8caf7a308504cf86e54a44e36b8e4326e09e (patch) | |
| tree | 942819e823f8cfdd8c58610e2eaccbd2e3682ccf /DEBIAN | |
Initial commit
Diffstat (limited to 'DEBIAN')
| -rw-r--r-- | DEBIAN/control | 7 | ||||
| -rwxr-xr-x | DEBIAN/postinst | 4 |
2 files changed, 11 insertions, 0 deletions
diff --git a/DEBIAN/control b/DEBIAN/control new file mode 100644 index 0000000..a1fe278 --- /dev/null +++ b/DEBIAN/control @@ -0,0 +1,7 @@ +Package: pycharm +Version: version +Provides: pycharm +Maintainer: Andrew Guschin <saintruler@gmail.com> +Architecture: all +Section: misc +Description: JetBrains Pycharm IDE. diff --git a/DEBIAN/postinst b/DEBIAN/postinst new file mode 100755 index 0000000..a53caf7 --- /dev/null +++ b/DEBIAN/postinst @@ -0,0 +1,4 @@ +#!/bin/sh + +version="version" +ln -sf "/opt/JetBrains.pycharm-$version/bin/pycharm.sh" "/usr/bin/pycharm" |