aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/potrace.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/potrace.rb b/Library/Formula/potrace.rb
new file mode 100644
index 000000000..17e56db16
--- /dev/null
+++ b/Library/Formula/potrace.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Potrace <Formula
+ url 'http://potrace.sourceforge.net/download/potrace-1.8.tar.gz'
+ homepage 'http://potrace.sourceforge.net'
+ md5 'e73b45565737d64011612704dd4d9f86'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end