aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDusK2012-11-11 14:44:58 -0800
committerAdam Vandenberg2012-11-11 17:48:38 -0800
commit6dfec65e90794b52265e76da39d6e457cbbe4eea (patch)
tree12173655863b7fa8780db66eb6288b16f7e5e536 /Library/Formula
parent66c3005aee1a5c1acba71576553fea3d4151cfeb (diff)
downloadhomebrew-6dfec65e90794b52265e76da39d6e457cbbe4eea.tar.bz2
makepp 2.0
Closes #15983. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-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