2013-09-29 02:38:52 +08:00
|
|
|
# Samuel Vasko 2013
|
|
|
|
# Cmder build script
|
|
|
|
# Like really a beta
|
2013-09-29 02:53:19 +08:00
|
|
|
#
|
|
|
|
# This script downloads dependencies form google code. Each software is extracted
|
|
|
|
# in a folder with same name as the project on google code. So Conemu becomes
|
|
|
|
# conemu-maximus5. Correct files are beeing picked by using labels.
|
|
|
|
# I will move the script for getting files by labels from php to here as soon I feel like it
|
2013-09-29 02:38:52 +08:00
|
|
|
|
|
|
|
require 'FileUtils'
|
|
|
|
|
|
|
|
def get_file project, query
|
|
|
|
# Should be changed to integrated downloader
|
|
|
|
urlToFile = 'wget -q -O - "http://samuelvasko.tk/gcode/?project='+project+'&query='+query+'"'
|
|
|
|
urlToFile = `#{urlToFile}`
|
|
|
|
urlToFile = urlToFile.split("\n").first
|
|
|
|
|
|
|
|
extension = urlToFile.split('.').last
|
|
|
|
filename = project+'.'+extension
|
|
|
|
|
|
|
|
puts "\n ------ Downloading #{project} ------- \n \n"
|
2013-09-29 02:53:19 +08:00
|
|
|
get_file = system("wget -O #{filename} #{urlToFile}")
|
2013-09-29 02:38:52 +08:00
|
|
|
|
|
|
|
unless get_file
|
|
|
|
puts "Failied to download #{project} from #{urlToFile}"
|
|
|
|
FileUtils.rm(filename) if File.exists?(filename)
|
|
|
|
exit(1)
|
|
|
|
end
|
|
|
|
|
2013-09-29 02:53:19 +08:00
|
|
|
system("7z x -o\"#{project}\" #{filename}")
|
2013-09-29 02:38:52 +08:00
|
|
|
|
|
|
|
File.unlink(project+"."+extension);
|
|
|
|
|
|
|
|
# When the folder contains another folder
|
|
|
|
# that is not what we want
|
|
|
|
if Dir.glob("#{project}/*").length == 1
|
|
|
|
temp_name = "#{project}_temp"
|
|
|
|
FileUtils.mv(project, temp_name)
|
|
|
|
FileUtils.mv(Dir.glob("#{temp_name}/*")[0], project)
|
|
|
|
FileUtils.rm_r(temp_name)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
puts '
|
|
|
|
______ _ _ _ _ _
|
|
|
|
| ___ \ (_) | | (_) | |
|
|
|
|
| |_/ /_ _ _| | __| |_ _ __ __ _ ___ _ __ ___ __| | ___ _ __
|
|
|
|
| ___ \ | | | | |/ _` | | \'_ \ / _` | / __| \'_ ` _ \ / _` |/ _ \ \'__|
|
|
|
|
| |_/ / |_| | | | (_| | | | | | (_| | | (__| | | | | | (_| | __/ |
|
|
|
|
\____/ \__,_|_|_|\__,_|_|_| |_|\__, | \___|_| |_| |_|\__,_|\___|_|
|
|
|
|
__/ |
|
|
|
|
|___/
|
|
|
|
'
|
|
|
|
|
|
|
|
puts 'Cleanup'
|
|
|
|
|
|
|
|
if Dir.exists?('vendor')
|
|
|
|
Dir.glob('vendor/*') { |file| FileUtils.rm_rf(file) if File.directory?(file) }
|
|
|
|
end
|
|
|
|
|
|
|
|
Dir.chdir('vendor')
|
|
|
|
|
|
|
|
puts 'Getting files'
|
|
|
|
|
|
|
|
get_file('clink', 'label:Type-Archive label=Featured')
|
|
|
|
get_file('conemu-maximus5', 'label:Type-Archive label=Preview label=Featured')
|
|
|
|
get_file('msysgit', 'label:Type-Archive label:Featured')
|
|
|
|
|
|
|
|
puts 'Done, bye'
|