diff options
| author | Adam Vandenberg | 2013-01-28 21:25:46 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-01-28 21:40:36 -0800 |
| commit | f7ddd8a934fd4eca9a8e70dce42de3477ecb1536 (patch) | |
| tree | 42c366455a0932990e4d012ea21027485109bc5a | |
| parent | 144d734987d909c72af03b7d20f25949620afdbc (diff) | |
| download | homebrew-f7ddd8a934fd4eca9a8e70dce42de3477ecb1536.tar.bz2 | |
libhid: style nits
| -rw-r--r-- | Library/Formula/libhid.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Formula/libhid.rb b/Library/Formula/libhid.rb index 50680ce77..a7dc89ce6 100644 --- a/Library/Formula/libhid.rb +++ b/Library/Formula/libhid.rb @@ -1,15 +1,17 @@ require 'formula' class Libhid < Formula - url 'http://alioth.debian.org/frs/download.php/1958/libhid-0.2.16.tar.gz' homepage 'http://libhid.alioth.debian.org/' + url 'http://alioth.debian.org/frs/download.php/1958/libhid-0.2.16.tar.gz' sha1 '9a25fef674e8f20f97fea6700eb91c21ebbbcc02' depends_on 'libusb' depends_on 'libusb-compat' def install - system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--disable-swig" + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}", + "--disable-swig" system "make install" end |
