dcled version 1.9 for OS X
The formula for dcled was recently updated to version 1.9.
To install dcled on your Mac, open your Terminal application and run the following commands;
brew update brew install dcled
The updated formula is as follows:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
require 'formula' class Dcled < Formula url 'http://www.jeffrika.com/~malakai/dcled/dcled-1.9.tgz' homepage 'http://www.jeffrika.com/~malakai/dcled/index.html' md5 '7cffd6585a5d355626d60e2127599dd0' depends_on 'libhid' def install inreplace 'makefile' do |s| s.change_make_var! 'INSTALLDIR', bin 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
This package, dcled, depends on;
See which packages depend on dcled.