homebrew-core/Formula/netpbm.rb

50 lines
1.4 KiB
Ruby

require 'formula'
class Netpbm < Formula
homepage 'http://netpbm.sourceforge.net'
url 'http://sourceforge.net/projects/netpbm/files/super_stable/10.35.80/netpbm-10.35.80.tgz'
md5 '2edf98b802a82e5367fc52382e9ac144'
head 'http://netpbm.svn.sourceforge.net/svnroot/netpbm/trunk'
depends_on "libtiff"
depends_on "jasper"
def install
ENV.x11 # For PNG
if ARGV.build_head?
system "cp", "config.mk.in", "config.mk"
config = "config.mk"
else
system "cp", "Makefile.config.in", "Makefile.config"
config = "Makefile.config"
end
inreplace config do |s|
s.remove_make_var! "CC"
s.change_make_var! "CFLAGS_SHLIB", "-fno-common"
s.change_make_var! "NETPBMLIBTYPE", "dylib"
s.change_make_var! "NETPBMLIBSUFFIX", "dylib"
s.change_make_var! "LDSHLIB", "--shared -o $(SONAME)"
s.change_make_var! "TIFFLIB", "-ltiff"
s.change_make_var! "JPEGLIB", "-ljpeg"
s.change_make_var! "PNGLIB", "-lpng"
s.change_make_var! "ZLIB", "-lz"
s.change_make_var! "JASPERLIB", "-ljasper"
s.change_make_var! "JASPERHDR_DIR", "#{HOMEBREW_PREFIX}/include/jasper"
end
ENV.deparallelize
system "make"
stage_dir = Pathname(Dir.pwd) + 'stage'
system "make", "package", "pkgdir=#{stage_dir}"
Dir.chdir stage_dir do
prefix.install %w{ bin include lib misc }
share.install Dir['man']
lib.install Dir['link/*.a']
end
end
end