2010-07-28 00:13:26 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Bcwipe < Formula
|
2011-10-29 18:32:26 +00:00
|
|
|
homepage 'http://www.jetico.com/linux/bcwipe-help/'
|
2012-03-20 01:05:32 +00:00
|
|
|
url 'http://www.jetico.com/linux/BCWipe-1.9-9.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'be4d945a5d24076fb6b0356389323a0686e1e4d7'
|
2010-07-28 00:13:26 +00:00
|
|
|
|
|
|
|
def install
|
2012-03-20 01:05:32 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2012-02-10 04:36:58 +00:00
|
|
|
system "make", "CFLAGS=#{ENV.cflags}", "LDFLAGS=#{ENV.ldflags}", "install"
|
2010-07-28 00:13:26 +00:00
|
|
|
end
|
|
|
|
end
|