summaryrefslogtreecommitdiff
path: root/packages/idea-iu/idea-iu.gradle
blob: e38fd419162950ec23873b0d54f42af20b52ae4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
final download = makeDownloadTask(
    url: "https://download.jetbrains.com/idea/ideaIU-${project.version}.tar.gz",
    sha256: sha256sum)

task untar(type: Copy) {
    from tarTree(download.dest)
    into file("${buildDir}/unpacked/dist")
    eachFile { FileCopyDetails fcd ->
        fcd.path = fcd.path.substring(path.indexOf('/')+1)
    }
}
untar.dependsOn(download)

ospackage {
    into "/opt/${project.name}"
    from untar.outputs.files
}

activator.bin['idea'] = "/opt/${project.name}/bin/idea.sh"