diff options
| author | Jack Nagel | 2014-05-31 20:11:05 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-05-31 20:11:05 -0500 |
| commit | ba69c53aca994b9d588a2b2442767d8de2875ae3 (patch) | |
| tree | 65f5e7600052a8689382d8193f6c8af5faf5cdda /Library/Formula | |
| parent | cb94c0815fedf90ca12e65526eff94648f93e285 (diff) | |
| download | homebrew-ba69c53aca994b9d588a2b2442767d8de2875ae3.tar.bz2 | |
open-ocd: modernize autotools deps
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/open-ocd.rb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Library/Formula/open-ocd.rb b/Library/Formula/open-ocd.rb index b82d0ab35..8212b80bc 100644 --- a/Library/Formula/open-ocd.rb +++ b/Library/Formula/open-ocd.rb @@ -8,18 +8,17 @@ class OpenOcd < Formula head do url 'git://git.code.sf.net/p/openocd/code' - depends_on :autoconf - depends_on :automake - depends_on 'texinfo' => :build + depends_on "autoconf" => :build + depends_on "automake" => :build + depends_on "libtool" => :build + depends_on "texinfo" => :build end - option 'with-hidapi', 'Enable building support for devices using HIDAPI (CMSIS-DAP)' option 'with-libftdi', 'Enable building support for libftdi-based drivers (USB-Blaster, ASIX Presto, OpenJTAG)' option 'with-libusb', 'Enable building support for all other USB adapters' depends_on 'pkg-config' => :build - depends_on :libtool depends_on 'libusb' => :recommended # some drivers are still not converted to libusb-1.0 depends_on 'libusb-compat' if build.with? 'libusb' |
