homebrew-core/Formula/open-ocd.rb
2013-04-30 09:31:47 -07:00

56 lines
1.6 KiB
Ruby

require 'formula'
class OpenOcd < Formula
homepage 'http://sourceforge.net/projects/openocd/'
url 'http://downloads.sourceforge.net/project/openocd/openocd/0.6.1/openocd-0.6.1.tar.bz2'
sha1 'b286dd9c0c6ca5cc7a76d25e404ad99a488e2c61'
option 'enable-ft2232_libftdi', 'Enable building support for FT2232 based devices with libftdi driver'
option 'enable-ft2232_ftd2xx', 'Enable building support for FT2232 based devices with FTD2XX driver'
depends_on 'libusb-compat'
depends_on 'libftdi' if build.include? 'enable-ft2232_libftdi'
# Per MacPorts, remove -gstabs, which is not supported by clang.
def patches
{:p0 => [
"https://trac.macports.org/export/105669/trunk/dports/cross/openocd/files/patch-jimctl-configure.diff"
]}
end
def install
# default options that don't imply additional dependencies
args = %W[
--enable-ftdi
--enable-arm-jtag-ew
--enable-jlink
--enable-rlink
--enable-stlink
--enable-ulink
--enable-usbprog
--enable-vsllink
--enable-ep93xx
--enable-at91rm9200
--enable-ecosboard
--enable-opendous
--enable-osbdm
--enable-buspirate
]
if build.include? "enable-ft2232_libftdi"
args << "--enable-ft2232_libftdi"
args << "--enable-presto_libftdi"
args << "--enable-usb_blaster_libftdi"
end
if build.include? "enable-ft2232_ftd2xx"
args << "--enable-ft2232_ftd2xx"
args << "--enable-presto_ftd2xx"
end
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
*args
system "make install"
end
end