-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
executable file
·53 lines (45 loc) · 2.07 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
require 'rubygems'
# require 'bundler/setup' # Releasy requires require that your application uses bundler.
require 'releasy'
Releasy::Project.new do
name "Gosu Fighters"
version "0.0.1"
verbose
executable "bin/Gosu Fighters.rb"
files(["lib/**/*.rb", "media/**/*.*"])
# exposed_files "README.html", "LICENSE.txt"
# add_link "http://my_application.github.com", "My Application website"
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.my_application"
# wrapper "wrappers/gosu-mac-wrapper-0.7.41.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 "/home/andre/Downloads/ruby-1.9.3-p551-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