diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2016-10-23 19:45:34 +0200 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2016-10-23 19:45:34 +0200 |
commit | 74ad736656b986942d99667394b5462975c26304 (patch) | |
tree | 67d5c504c88948e8971f514d88d606cdf3781f3b /packages/groovy-bin/groovy.gradle | |
parent | c015b891ac4cebdf7b1ce6038490df321a135738 (diff) | |
download | debian-packages-74ad736656b986942d99667394b5462975c26304.tar.gz debian-packages-74ad736656b986942d99667394b5462975c26304.zip |
refactor buildscripts to use de.undercouch.download for dowload and verify
Diffstat (limited to 'packages/groovy-bin/groovy.gradle')
-rw-r--r-- | packages/groovy-bin/groovy.gradle | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/groovy-bin/groovy.gradle b/packages/groovy-bin/groovy.gradle new file mode 100644 index 0000000..6a42d6d --- /dev/null +++ b/packages/groovy-bin/groovy.gradle @@ -0,0 +1,22 @@ +final download = makeDownloadTask( + url: "http://dl.bintray.com/groovy/maven/apache-groovy-binary-${project.version}.zip", + sha256: sha256sum) + +task unzip(type: Copy) { + from zipTree(download.dest) + into file("${buildDir}/unpacked/dist") + eachFile { FileCopyDetails fcd -> + fcd.path = fcd.path.substring(path.indexOf('/') + 1) + } +} +unzip.dependsOn(download) + +ospackage { + into "/opt/${project.name}" + from unzip.outputs.files +} + +activator.bin['groovysh'] = "/opt/${project.name}/bin/groovysh" +activator.bin['groovy'] = "/opt/${project.name}/bin/groovy" +activator.bin['groovyConsole'] = "/opt/${project.name}/bin/groovyConsole" +activator.env['GROOVY_HOME'] = "/opt/${project.name}"
\ No newline at end of file |