blob: 075835e0060e7635b692b6177f5b51013de76586 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Libicns <Formula
url 'http://downloads.sourceforge.net/project/icns/icns/libicns-0.7.1/libicns-0.7.1.tar.gz'
homepage 'http://icns.sourceforge.net/'
md5 'ff4624353a074c6cb51e41d145070e10'
depends_on 'jasper' # or openjpeg
def install
ENV.libpng
ENV.universal_binary # build fat so wine can use it
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|