homebrew-core/Formula/dcled.rb
Jamie d9ef821678 http->https links update
Closes Homebrew/homebrew#47078.

Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
2015-12-17 00:44:16 +01:00

17 lines
582 B
Ruby

class Dcled < Formula
desc "Linux driver for dream cheeky USB message board"
homepage "http://www.jeffrika.com/~malakai/dcled/index.html"
url "https://www.jeffrika.com/~malakai/dcled/dcled-2.2.tgz"
sha256 "0da78c04e1aa42d16fa3df985cf54b0fbadf2d8ff338b9bf59bfe103c2a959c6"
depends_on "libhid"
depends_on "libusb"
def install
system "make", "CC=#{ENV.cc}",
"LIBUSB_CFLAGS=-I#{Formula["libusb"].opt_include}/libusb-1.0"
system "make", "install",
"FONTDIR=#{share}/#{name}",
"INSTALLDIR=#{bin}"
end
end