diff options
| author | Jean-Michel Lacroix | 2011-08-17 21:38:45 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2011-08-19 09:49:47 -0700 |
| commit | a9fa8633b59ff863e841f21d78a83906a1233be8 (patch) | |
| tree | c98d69953b902c9306aab48515905181e592a17a | |
| parent | 407fc3b6a8e1bbf5bc7c0f3f7683386fedf400c5 (diff) | |
| download | homebrew-a9fa8633b59ff863e841f21d78a83906a1233be8.tar.bz2 | |
minised 1.13
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -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 |
