-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
56 lines (48 loc) · 2.09 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# require 'rubygems'
require 'bundler'
Bundler.require :development
require 'bundler/setup' unless defined?(OSX_EXECUTABLE) or ENV['OCRA_EXECUTABLE']
require_relative 'lib/worms/version'
Releasy::Project.new do
name "Worms"
version Worms::VERSION
verbose # Can be removed if you don't want to see all build messages.
executable "Worms.rb"
files ["lib/**/*.rb", "media/**/*.*"]
exposed_files "players/cpu.js"
add_link "https://github.com/fabiosammy/worms", "Source code"
exclude_encoding # Applications that don't use advanced encoding (e.g. Japanese characters) can save build size with this.
# Create a variety of releases, for all platforms.
add_build :osx_app do
url "com.github.fabiosammy.worms"
wrapper "wrappers/gosu-mac-wrapper-0.7.47.tar.gz" # Assuming this is where you downloaded this file.
icon "media/icon.icns"
add_package :tar_gz
end
add_build :source do
add_package :"7z"
end
# # If building on a Windows machine, :windows_folder and/or :windows_installer are recommended.
# add_build :windows_folder do
# icon "media/icon.ico"
# executable_type :windows # Assuming you don't want it to run with a console window.
# add_package :exe # Windows self-extracting archive.
# end
#
# add_build :windows_installer do
# icon "media/icon.ico"
# start_menu_group "Spooner Games"
# readme "README.html" # User asked if they want to view readme after install.
# license "LICENSE.txt" # User asked to read this and confirm before installing.
# executable_type :windows # Assuming you don't want it to run with a console window.
# add_package :zip
# end
# If unable to build on a Windows machine, :windows_wrapped is the only choice.
add_build :windows_wrapped do
wrapper "wrappers/ruby-1.9.3-p0-i386-mingw32.7z" # Assuming this is where you downloaded this file.
executable_type :windows # Assuming you don't want it to run with a console window.
exclude_tcl_tk # Assuming application doesn't use Tcl/Tk, then it can save a lot of size by using this.
add_package :zip
end
add_deploy :local # Only deploy locally.
end