diff options
| author | Robert Flick | 2010-08-26 23:07:02 +0200 | 
|---|---|---|
| committer | David Höppner | 2010-08-27 13:20:37 +0200 | 
| commit | ca0134e475064ad26396950c9e6ff4d9fa08cce6 (patch) | |
| tree | d13e4352c3e4b0c8fda53cb7d1acff20c556f54d /Library/Formula/libhid.rb | |
| parent | 4384909d95d9a041f931ac8ccb255cf47574fe82 (diff) | |
| download | homebrew-ca0134e475064ad26396950c9e6ff4d9fa08cce6.tar.bz2 | |
Initial checkin libhid, a user-space USB HID
Signed-off-by: David Höppner <0xffea@gmail.com>
* remove white spaces
Diffstat (limited to 'Library/Formula/libhid.rb')
| -rw-r--r-- | Library/Formula/libhid.rb | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/libhid.rb b/Library/Formula/libhid.rb new file mode 100644 index 000000000..273a369be --- /dev/null +++ b/Library/Formula/libhid.rb @@ -0,0 +1,16 @@ +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/' +  md5 'f2a427a6d6b98a5db8d17e2777173af7' + +  depends_on 'libusb' +  depends_on 'libusb-compat' + +  def install +    system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--disable-swig" + +    system "make install" +  end +end  | 
