diff options
Diffstat (limited to 'development/idea')
-rw-r--r-- | development/idea/idea.SlackBuild | 11 | ||||
-rw-r--r-- | development/idea/idea.info | 6 |
2 files changed, 12 insertions, 5 deletions
diff --git a/development/idea/idea.SlackBuild b/development/idea/idea.SlackBuild index ab0320baeb1a7..0ab849a6fce3d 100644 --- a/development/idea/idea.SlackBuild +++ b/development/idea/idea.SlackBuild @@ -8,11 +8,18 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=idea ARCNAM=ideaIC -VERSION=${VERSION:-2022.2} +VERSION=${VERSION:-2022.2.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} -ARCH=${ARCH:-noarch} + +if [ -z "$ARCH" ]; then + case "$(uname -m)" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$(uname -m) ;; + esac +fi # If the variable PRINT_PACKAGE_NAME is set, then this script will report what # the name of the created package would be, and then exit. This information diff --git a/development/idea/idea.info b/development/idea/idea.info index 8d3339ddced4e..fb70ea228d66a 100644 --- a/development/idea/idea.info +++ b/development/idea/idea.info @@ -1,8 +1,8 @@ PRGNAM="idea" -VERSION="2022.2" +VERSION="2022.2.1" HOMEPAGE="http://www.jetbrains.com/idea/" -DOWNLOAD="https://download.jetbrains.com/idea/ideaIC-2022.2.tar.gz" -MD5SUM="1b0b2f37643abfe7a57832acf42ade9c" +DOWNLOAD="https://download.jetbrains.com/idea/ideaIC-2022.2.1.tar.gz" +MD5SUM="009550ed0e222fc0d991a6f19c326456" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="zulu-openjdk11" |