aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorThomas Strathmann2012-03-28 18:31:02 +0200
committerAdam Vandenberg2012-04-01 07:28:59 -0700
commit171f42db0bf20ef8426f77e18fd341f47a0a4271 (patch)
tree504daf6e92e908fd2628522a1b82a3a47c9531fb /Library/Formula
parent1695d92ddef060ae891d1b4a52c054b7c642d4f3 (diff)
downloadhomebrew-171f42db0bf20ef8426f77e18fd341f47a0a4271.tar.bz2
makeicns 1.4.9
Closes #11363. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/makeicns.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/makeicns.rb b/Library/Formula/makeicns.rb
new file mode 100644
index 000000000..4886fe0d2
--- /dev/null
+++ b/Library/Formula/makeicns.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Makeicns < Formula
+ homepage 'http://bitbucket.org/mkae/makeicns'
+ url 'https://bitbucket.org/mkae/makeicns/downloads/makeicns-1.4.9.tar.bz2'
+ md5 '795ec620f15bfcebb5246319c1a96eab'
+ head 'https://bitbucket.org/mkae/makeicns', :using => :hg
+
+ def install
+ system "make"
+ bin.install "makeicns"
+ end
+end