aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/makepp.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/makepp.rb b/Library/Formula/makepp.rb
new file mode 100644
index 000000000..b8baeb0b9
--- /dev/null
+++ b/Library/Formula/makepp.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Makepp < Formula
+ homepage 'http://makepp.sourceforge.net/'
+ url 'http://sourceforge.net/projects/makepp/files/2.0/makepp-2.0.tgz'
+ sha1 '23995b1fc17255be6a42e5778f6027441dc44661'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
+ system "make install"
+ end
+end