diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/minised.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/minised.rb b/Library/Formula/minised.rb new file mode 100644 index 000000000..94e8f3d54 --- /dev/null +++ b/Library/Formula/minised.rb @@ -0,0 +1,17 @@ +require 'formula' + +class Minised < Formula + url 'http://dl.exactcode.de/oss/minised/minised-1.13.tar.gz' + homepage 'http://www.exactcode.de/site/open_source/minised/' + md5 '2a43b1bbf1654ef7fab9d8c4f6c979a1' + + def install + inreplace "Makefile" do |s| + s.change_make_var! "DESTDIR", prefix + s.change_make_var! "PREFIX", "" + end + + system "make" + system "make install" + end +end |
