aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bcwipe.rb
blob: 98be6959866bf270438def14c675735e7beb1ce7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Bcwipe < Formula
  homepage 'http://www.jetico.com/linux/bcwipe-help/'
  url 'http://www.jetico.com/linux/BCWipe-1.9-9.tar.gz'
  sha1 'be4d945a5d24076fb6b0356389323a0686e1e4d7'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make", "CFLAGS=#{ENV.cflags}", "LDFLAGS=#{ENV.ldflags}", "install"
  end
end