1 Star 0 Fork 0

郝冰/unity-webview

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Rakefile 4.23 KB
一键复制 编辑 原始数据 按行查看 历史
Koji Nakamaru 提交于 2023-07-11 19:41 +08:00 . adjusted Rakefile about UNITY path.
# Copyright (c) 2012 GREE, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
require 'fileutils'
UNITY="/Applications/Unity/Hub/Editor/2019.4.40f1/Unity.app/Contents/MacOS/Unity"
CNT = 2
SRCDIR = Array.new(CNT);
DSTDIR = Array.new(CNT);
SRCS = Array.new(CNT);
SRCDIR[0]="../plugins"
DSTDIR[0]="Packager/Assets/Plugins"
SRCS[0]=%W|
Editor/UnityWebViewPostprocessBuild.cs
WebViewObject.cs
iOS/WebView.mm
iOS/WebViewWithUIWebView.mm
unity-webview-webgl-plugin.jslib
|
SRCDIR[1]="../plugins"
DSTDIR[1]="Packager/Assets"
SRCS[1]=%W|
WebGLTemplates
WebPlayerTemplates
|
task :default => ["build", "pack", "buildnofragment", "packnofragment"]
desc "build"
task :build do
DSTDIR.each do |dir|
sh "git clean -dxf ."
# for keeping meta files
if Dir.exists?('../dist/package')
sh "cd ../dist; git clean -dxf .; git checkout ."
sh "cp -a ../dist/package/* Packager"
end
end
CNT.times do |i|
SRCS[i].each do |src|
dstdir = "#{DSTDIR[i]}/#{File.dirname(src)}"
FileUtils.mkdir_p dstdir
FileUtils.cp_r "#{SRCDIR[i]}/#{src}", dstdir, preserve:true
end
end
["Android"].each do |t|
Dir.chdir("#{SRCDIR[0]}/#{t}") do
sh "git clean -dxf .; ./install.sh --unity /Applications/Unity5.6.1f1"
end
end
["Mac"].each do |t|
Dir.chdir("#{SRCDIR[0]}/#{t}") do
sh "./install.sh"
end
end
end
desc "pack"
task :pack do
sh "#{UNITY} -projectPath `pwd`/Packager -batchmode -quit -executeMethod Packager.Export -logFile LOG"
FileUtils.mv "Packager/unity-webview.unitypackage", "../dist"
sh "(cd Packager; rm -f ../../dist/unity-webview.zip; zip -qr9 ../../dist/unity-webview.zip `find Assets/Plugins -type f` `find Assets/WebGLTemplates -type f` `find Assets/WebPlayerTemplates -type f`)"
sh "(cd ../dist/package; rm -rf Assets; unzip -q ../unity-webview.zip; git checkout Assets/Plugins.meta; git checkout Assets/WebGLTemplates.meta; git checkout Assets/WebPlayerTemplates.meta)"
end
desc "buildnofragment"
task :buildnofragment do
["Android"].each do |t|
Dir.chdir("#{SRCDIR[0]}/#{t}") do
sh "git clean -dxf .; ./install-nofragment.sh --unity /Applications/Unity5.6.1f1"
end
end
sh "sed -i '' -e 's/private static bool nofragment = false/private static bool nofragment = true/' Packager/Assets/Plugins/Editor/UnityWebViewPostprocessBuild.cs"
end
desc "packnofragment"
task :packnofragment do
sh "#{UNITY} -projectPath `pwd`/Packager -batchmode -quit -executeMethod Packager.Export -logFile LOG"
FileUtils.mv "Packager/unity-webview.unitypackage", "../dist/unity-webview-nofragment.unitypackage"
sh "(cd Packager; rm -f ../../dist/unity-webview-nofragment.zip; zip -qr9 ../../dist/unity-webview-nofragment.zip `find Assets/Plugins -type f` `find Assets/WebGLTemplates -type f` `find Assets/WebPlayerTemplates -type f`)"
sh "(cd ../dist/package-nofragment; rm -rf Assets; unzip -q ../unity-webview-nofragment.zip; git checkout Assets/Plugins.meta; git checkout Assets/WebGLTemplates.meta; git checkout Assets/WebPlayerTemplates.meta)"
end
desc "commit"
task :commit do
rev = open("|git show HEAD|head -1|awk '{print $2}'").read.strip
sh "git add ../dist"
sh "git commit -m 'updated binaries (#{rev}).'"
end
desc "clean"
task :clean do
DSTDIR.each do |dir|
FileUtils.rm_rf dir
end
end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hb3345678/unity-webview.git
git@gitee.com:hb3345678/unity-webview.git
hb3345678
unity-webview
unity-webview
master

搜索帮助