2011-08-18 01:38:45 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Minised < Formula
|
|
|
|
homepage 'http://www.exactcode.de/site/open_source/minised/'
|
2012-02-10 02:47:46 +00:00
|
|
|
url 'http://dl.exactcode.de/oss/minised/minised-1.13.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '3b718ce86c48047d1f5e8efcee8dd69a7a9dbac5'
|
2011-08-18 01:38:45 +00:00
|
|
|
|
|
|
|
def install
|
2012-02-10 02:47:46 +00:00
|
|
|
system "make" # separate steps or it won't build the binary
|
|
|
|
system "make", "DESTDIR=#{prefix}", "PREFIX=", "install"
|
2011-08-18 01:38:45 +00:00
|
|
|
end
|
|
|
|
end
|