-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Greg Fitzgerald
committed
Nov 18, 2012
1 parent
1cd0f09
commit 9762272
Showing
1 changed file
with
11 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
maintainer "Greg Fitzgerald" | ||
maintainer_email "[email protected]" | ||
license "MIT" | ||
description "Installs/Configures minecraft server" | ||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) | ||
version "0.0.1" | ||
maintainer "Greg Fitzgerald" | ||
maintainer_email "[email protected]" | ||
license "MIT" | ||
description "Installs/Configures minecraft server" | ||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) | ||
version "0.0.2" | ||
name "minecraft" | ||
|
||
recipe "minecraft", "Installs and configures minecraft server." | ||
|
||
depends 'java' | ||
%w{ java tmux }.each do |dep| | ||
depends dep | ||
end | ||
|
||
%w { debian ubuntu }.each do |os| | ||
%w{ debian ubuntu }.each do |os| | ||
supports os | ||
end |