blob: e742cb6d4940b2b080b2077f0427443884401b44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
class Makeicns < Formula
homepage 'http://bitbucket.org/mkae/makeicns'
url 'https://bitbucket.org/mkae/makeicns/downloads/makeicns-1.4.10a.tar.bz2'
sha1 '2a3b1229781516c8cc36089bf09729d5c17ac17c'
head 'https://bitbucket.org/mkae/makeicns', :using => :hg
def patches
{:p0 => [
"https://trac.macports.org/export/114372/trunk/dports/graphics/makeicns/files/patch-IconFamily.m.diff"
]}
end
def install
system "make"
bin.install "makeicns"
end
end
|