aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorPaul Sadauskas2010-05-26 12:49:40 -0600
committerAdam Vandenberg2010-06-10 11:21:44 -0700
commitb34d1983a127f521e0fd9e7712e6b32e6a2e125d (patch)
tree41b336985d519bba5ab65c5a033fab5fbeabb981 /Library/Formula
parenteb8b6b7d46dc14ee1bcadcec3722d02504a04fbd (diff)
downloadhomebrew-b34d1983a127f521e0fd9e7712e6b32e6a2e125d.tar.bz2
Add ossp-uuid
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ossp-uuid.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/ossp-uuid.rb b/Library/Formula/ossp-uuid.rb
new file mode 100644
index 000000000..a31b6022e
--- /dev/null
+++ b/Library/Formula/ossp-uuid.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class OsspUuid <Formula
+ url 'ftp://ftp.ossp.org/pkg/lib/uuid/uuid-1.6.2.tar.gz'
+ homepage 'http://www.ossp.org/pkg/lib/uuid/'
+ md5 '5db0d43a9022a6ebbbc25337ae28942f'
+
+ def install
+ system "./configure", "--disable-debug",
+ "--without-perl",
+ "--without-php",
+ "--without-pgsql",
+ "--prefix=#{prefix}"
+ system "make"
+ system "make install"
+ end
+end