blob: 50680ce7741efb55cb768d8807434d70289b1fd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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/'
  sha1 '9a25fef674e8f20f97fea6700eb91c21ebbbcc02'
  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
  |