83 lines
3.7 KiB
Bash
83 lines
3.7 KiB
Bash
# Maintainer: XavierCLL <xavier.corredor.llano (a) gmail.com>
|
|
|
|
pkgname=pycharm-professional
|
|
pkgver=2019.2.3
|
|
_pkgver=2019.2.3
|
|
pkgrel=1
|
|
pkgdesc="Powerful Python and Django IDE. Professional Edition."
|
|
arch=('x86_64')
|
|
url='https://www.jetbrains.com/pycharm/'
|
|
conflicts=('pycharm' 'pycharm-community-edition')
|
|
provides=('pycharm')
|
|
license=('custom')
|
|
backup=(
|
|
opt/$pkgname/bin/pycharm.vmoptions
|
|
opt/$pkgname/bin/pycharm64.vmoptions
|
|
opt/$pkgname/bin/idea.properties
|
|
)
|
|
depends=('giflib' 'glibc' 'sh' 'ttf-font' 'libxtst' 'libxslt' 'python')
|
|
source=("https://download.jetbrains.com/python/$pkgname-$_pkgver.tar.gz"
|
|
"pycharm-professional.desktop"
|
|
"pycharm"
|
|
"charm.desktop"
|
|
"charm")
|
|
# https://download.jetbrains.com/python/pycharm-professional-${_pkgver}.tar.gz.sha256
|
|
sha256sums=('f6acada6cf0308ea21be3d1656b9a42f2584259c566c7d0f97c7267311a523a6'
|
|
'aaf7113e8c56e4d977eca204d57350d9493eda2710abefd2488a2b5d47c53344'
|
|
'818ed42f4200ae13315587abf6f247f93e68c658a94794f73924c985cdc145d0'
|
|
'21e77b6b18e14636f9827e1f8d45bbc8dba8fb14ea5f4cde285c1ef4bb01c85e'
|
|
'bd2faa933e409a7de53750c701020a301617f5220091f1a760a6d9f61d1c6556')
|
|
makedepends=('python2-setuptools' 'python-setuptools')
|
|
optdepends=('ipython2: For enhanced interactive Python shell v2 inside Pycharm'
|
|
'ipython: For enhanced interactive Python shell v3 inside Pycharm'
|
|
'openssh: For deployment and remote connections'
|
|
'python2-setuptools: Packages manager for Python 2, for project interpreter'
|
|
'python-setuptools: Packages manager for Python 3, for project interpreter'
|
|
'python2-coverage: For support code coverage measurement for Python 2'
|
|
'python-coverage: For support code coverage measurement for Python 3'
|
|
'cython2: For performance debugger in Python 2'
|
|
'cython: For performance debugger in Python 3'
|
|
'docker-machine: For support docker inside Pycharm'
|
|
'docker-compose: For support docker inside Pycharm'
|
|
'vagrant: For support virtualized development environments'
|
|
'python2-pytest: For support testing inside Pycharm with Python 2'
|
|
'python-pytest: For support testing inside Pycharm with Python 3'
|
|
'python2-tox: Python environments for testing tool with Python 2'
|
|
'python-tox: Python environments for testing tool with Python 3'
|
|
'jupyter: For support Jupyter Notebook'
|
|
'python-docutils-stubs: For build documentation with sphynx')
|
|
|
|
build() {
|
|
cd pycharm-$_pkgver
|
|
|
|
# compile PyDev debugger used by PyCharm to speedup debugging
|
|
python2 helpers/pydev/setup_cython.py build_ext --build-temp build --build-lib .
|
|
python3 helpers/pydev/setup_cython.py build_ext --build-temp build --build-lib .
|
|
|
|
rm -rf bin/fsnotifier{,-arm} lib/libpty/linux/x86
|
|
}
|
|
|
|
package() {
|
|
# workaround FS#40934
|
|
sed -i 's/lcd/on/' pycharm-$_pkgver/bin/*.vmoptions
|
|
|
|
# base
|
|
install -dm 755 $pkgdir/opt/$pkgname
|
|
cp -dr --no-preserve=ownership pycharm-$_pkgver/* $pkgdir/opt/$pkgname/
|
|
install -dm 755 $pkgdir/usr/share/{applications,pixmaps}
|
|
install -Dm 644 $pkgdir/opt/$pkgname/bin/pycharm.png $pkgdir/usr/share/pixmaps/pycharm.png
|
|
install -Dm 644 pycharm-professional.desktop $pkgdir/usr/share/applications/
|
|
|
|
# exec
|
|
install -dm 755 $pkgdir/usr/bin/
|
|
install -Dm 755 pycharm $pkgdir/usr/bin/
|
|
|
|
# licenses
|
|
install -dm 755 $pkgdir/usr/share/licenses/$pkgname/
|
|
cp -dr --no-preserve=ownership pycharm-$_pkgver/license/* $pkgdir/usr/share/licenses/$pkgname/
|
|
|
|
# install charm application - for edit a single file in Pycharm
|
|
install -Dm 755 charm $pkgdir/opt/pycharm-professional/bin/
|
|
install -Dm 644 charm.desktop $pkgdir/usr/share/applications/
|
|
}
|