diff options
author | Yves Fischer <yves.fischer@cern.ch> | 2016-05-21 18:00:51 +0200 |
---|---|---|
committer | Yves Fischer <yves.fischer@cern.ch> | 2016-05-21 18:00:51 +0200 |
commit | b0da100e101675b9bf69ca25354dad55d05ae84b (patch) | |
tree | 1932081d720e6c3d53bba632064dcb1586a7d727 /packages/xmind/build.gradle | |
parent | 4a9f995227c3fda4e115bf81785857d17350f37e (diff) | |
download | debian-packages-b0da100e101675b9bf69ca25354dad55d05ae84b.tar.gz debian-packages-b0da100e101675b9bf69ca25354dad55d05ae84b.zip |
correct xmind
Diffstat (limited to 'packages/xmind/build.gradle')
-rw-r--r-- | packages/xmind/build.gradle | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/packages/xmind/build.gradle b/packages/xmind/build.gradle index 62e525e..edb6630 100644 --- a/packages/xmind/build.gradle +++ b/packages/xmind/build.gradle @@ -3,15 +3,21 @@ import org.xapek.yvesf.gradle.DownloadTask version '7-update1' task download(type: DownloadTask) { - source "http://www.xmind.net/xmind/downloads/xmind-${project.version}-portable.zip" + //source "http://dl2.xmind.net/xmind-downloads/xmind-${project.version}-portable.zip" + source "http://dl3.xmind.net/xmind-${project.version}-portable.zip" sha256sum '2823c93178e55ff21d3a75ff2a9d2aa694f50a94a7220207a1ad757660cdf030' } task unpack(type: Copy) { - from zipTree(download.destFile) - into file("${buildDir}/unpacked/dist") - eachFile { FileCopyDetails fcd -> - fcd.path = fcd.path.substring(path.indexOf('/')+1) + into("${buildDir}/unpacked/dist") + from(zipTree(download.destFile)) { + include('XMind_Linux_64bit/**') + include('Commons/**') + include('*.html') + include('*.txt') + } + from('XMind.ini') { + eachFile { path = "XMind_Linux_64bit/XMind.ini" } } } unpack.dependsOn(download) @@ -20,3 +26,5 @@ ospackage { into "/opt/${project.name}" from unpack.outputs.files } + +activator.bin['xmind'] = "/opt/${project.name}/XMind_Linux_64bit/XMind"
\ No newline at end of file |