afe4fb1a0c
Upgrade dcled to version 2.0. Add `FONTDIR` to the list of makefile paths to be adjusted so the fonts get installed into `share+name` rather than `HOMEBREW_PREFIX/share` where they can't be uninstalled. Tested with clang and llvm on Lion. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
22 lines
643 B
Ruby
22 lines
643 B
Ruby
require 'formula'
|
|
|
|
class Dcled < Formula
|
|
homepage 'http://www.jeffrika.com/~malakai/dcled/index.html'
|
|
url 'http://www.jeffrika.com/~malakai/dcled/dcled-2.0.tgz'
|
|
sha1 'db01658b44829a5f6d1eae7264648275bda406ed'
|
|
|
|
depends_on 'libhid'
|
|
|
|
def install
|
|
inreplace 'makefile' do |s|
|
|
s.change_make_var! 'INSTALLDIR', bin
|
|
s.change_make_var! 'FONTDIR', share+name
|
|
s.change_make_var! 'CC', ENV.cc
|
|
s.change_make_var! 'CFLAGS', "#{ENV.cflags} -I#{HOMEBREW_PREFIX}/include"
|
|
s.change_make_var! 'LDFLAGS', ENV.ldflags + ' -lm -lhid' unless ENV.ldflags.nil?
|
|
end
|
|
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|