GoLand: update to 2021.1.3.
This commit is contained in:
parent
7902a3fd0c
commit
09713990fa
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'GoLand'
|
||||
pkgname=GoLand
|
||||
version=2020.3.2
|
||||
version=2021.1.3
|
||||
revision=1
|
||||
archs="i686 x86_64"
|
||||
depends="jetbrains-jdk-bin"
|
||||
|
@ -9,7 +9,7 @@ maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
|
|||
license="custom:Commercial"
|
||||
homepage="https://www.jetbrains.com/go"
|
||||
distfiles="https://download.jetbrains.com/go/goland-${version}.tar.gz"
|
||||
checksum=5f1bacaadac20259b58215fb3a5f58fe97ba1051279a7f9060693d1e1ea18b03
|
||||
checksum=ade387550e79a8e4cdd31cfbdef5f344f30d2c4e005144a44e95cdb1419ac977
|
||||
repository=nonfree
|
||||
restricted=yes
|
||||
nopie=yes
|
||||
|
@ -17,23 +17,30 @@ python_version=3
|
|||
|
||||
post_extract() {
|
||||
# Remove files for other CPU architectures
|
||||
rm -rf bin/fsnotifier-arm
|
||||
rm -rf lib/pty4j-native/linux/ppc64le
|
||||
rm -rf lib/pty4j-native/linux/aarch64
|
||||
rm -rf lib/pty4j-native/linux/mips64el
|
||||
rm -rf lib/pty4j-native/linux/ppc64le
|
||||
|
||||
# Remove files for other OSes
|
||||
rm -rf plugins/cwm-plugin/quiche-native/darwin-aarch64
|
||||
rm -rf plugins/cwm-plugin/quiche-native/darwin-x86-64
|
||||
rm -rf plugins/cwm-plugin/quiche-native/win32-x86-64
|
||||
rm -rf plugins/performanceTesting/bin/yjpagent.dll
|
||||
rm -rf plugins/performanceTesting/bin/yjpagent64.dll
|
||||
rm -rf plugins/performanceTesting/bin/libyjpagent.dylib
|
||||
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
x86_64)
|
||||
rm -rf bin/fsnotifier
|
||||
rm -rf bin/goland.vmoptions
|
||||
rm -rf bin/libyjpagent-linux.so
|
||||
rm -rf lib/pty4j-native/linux/x86
|
||||
rm -rf plugins/performanceTesting/bin/libyjpagent.so
|
||||
;;
|
||||
i686)
|
||||
rm -rf bin/fsnotifier64
|
||||
rm -rf bin/goland64.vmoptions
|
||||
rm -rf bin/libyjpagent-linux64.so
|
||||
rm -rf lib/pty4j-native/linux/x86_64
|
||||
rm -rf plugins/performanceTesting/bin/libyjpagent64.so
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue