protk 1.1.12 → 1.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/protk/setup_rakefile.rake +3 -2
- metadata +1 -1
@@ -275,7 +275,8 @@ def platform_bunzip
|
|
275
275
|
end
|
276
276
|
|
277
277
|
pwiz_version="3_0_4388"
|
278
|
-
|
278
|
+
pwiz_folder_name="pwiz-bin-#{pwiz_platform}-release-#{pwiz_version}"
|
279
|
+
pwiz_packagefile="#{pwiz_folder_name}.tar.bz2"
|
279
280
|
pwiz_url="https://dl.dropbox.com/u/226794/#{pwiz_packagefile}"
|
280
281
|
pwiz_installed_file="#{env.idconvert}"
|
281
282
|
|
@@ -286,7 +287,7 @@ file pwiz_installed_file => [@build_dir,"#{@download_dir}/#{pwiz_packagefile}"]
|
|
286
287
|
sh %{cd #{@build_dir}; #{platform_bunzip} -f #{pwiz_packagefile}}
|
287
288
|
sh %{cd #{@build_dir}; tar -xvf #{pwiz_packagefile.chomp('.bz2')}}
|
288
289
|
sh %{mkdir -p #{env.pwiz_root}}
|
289
|
-
sh %{cd #{@build_dir}; cp
|
290
|
+
sh %{cd #{@build_dir}; cp ./#{pwiz_folder_name}/* #{env.pwiz_root}/}
|
290
291
|
end
|
291
292
|
|
292
293
|
task :pwiz => pwiz_installed_file
|