45 lines
1.6 KiB
Bash
45 lines
1.6 KiB
Bash
# Maintainer: Philip May <eniak.info@gmail.com>
|
|
# Contributor: mark blakeney at bullet dash systems dot net
|
|
_appname=pycharm-community
|
|
pkgname=$_appname-jre
|
|
pkgver=2023.3.3
|
|
pkgrel=1
|
|
pkgdesc="PyCharm Community Edition IDE for Python with bundled JRE"
|
|
arch=(x86_64 aarch64)
|
|
url="https://www.jetbrains.com/pycharm/"
|
|
license=('APACHE')
|
|
conflicts=(
|
|
"pycharm-community-eap"
|
|
"pycharm-community-edition"
|
|
)
|
|
source=(
|
|
pycharm.desktop
|
|
pycharm.sh
|
|
)
|
|
options=(!strip)
|
|
sha256sums=('f727119ec7c8b96820e80712b1ee342de6a94ff72402e8f2d390cbff702f9b21'
|
|
'b6f0518e59c4744ded38de63efba91205bcba406fa74944a1f3a8937566d8acc')
|
|
sha256sums_x86_64=('f71513f428f5df3b97b09c415967ff2db3a4e7172f293e621b3f04cd1d695443')
|
|
sha256sums_aarch64=('6e8340b494d73e3ff8de46a3e6e70ff8198b76c989c859faef59cc18724a36a2')
|
|
|
|
source_x86_64=("https://download.jetbrains.com/python/pycharm-community-${pkgver}.tar.gz")
|
|
|
|
source_aarch64=("https://download.jetbrains.com/python/pycharm-community-${pkgver}-aarch64.tar.gz")
|
|
|
|
package() {
|
|
cd "${_appname}-${pkgver}"
|
|
|
|
# workaround FS#40934
|
|
# see https://bugs.archlinux.org/task/40934
|
|
sed -i 's/lcd/on/' bin/*.vmoptions
|
|
|
|
rm -rf bin/fsnotifier-arm
|
|
|
|
install -dm 755 "${pkgdir}"/usr/share/{licenses,pixmaps,pycharm}
|
|
cp -dr --no-preserve='ownership' bin jbr lib plugins "${pkgdir}"/usr/share/pycharm/
|
|
cp -dr --no-preserve='ownership' license "${pkgdir}"/usr/share/licenses/pycharm/
|
|
ln -s /usr/share/pycharm/bin/pycharm.png "${pkgdir}"/usr/share/pixmaps/
|
|
install -Dm 644 ../pycharm.desktop -t "${pkgdir}"/usr/share/applications/
|
|
install -Dm 755 ../pycharm.sh "${pkgdir}"/usr/bin/pycharm
|
|
}
|