aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authornibbles 2bits2012-06-28 23:19:39 -0700
committerAdam Vandenberg2012-06-29 10:07:01 -0700
commit29338de3a45a9a94c6f769bf03b04e3447967fa4 (patch)
treed530756e9181044613ddd0591573020e47d8bbe9 /Library/Formula
parent19fa024cb621ee076fa08902964ec38563dc151c (diff)
downloadhomebrew-29338de3a45a9a94c6f769bf03b04e3447967fa4.tar.bz2
remove readpst, duplicate of libpst
This commit removes readpst from the main Homebrew repo because it is a duplicate of libpst. They both use the same tarball, same homepage, and compile nearly the same. The only difference is that libpst has a dep on boost. So go with libpst which is already the latest version. Closes #13089. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/readpst.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/Library/Formula/readpst.rb b/Library/Formula/readpst.rb
deleted file mode 100644
index 42362336b..000000000
--- a/Library/Formula/readpst.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-require 'formula'
-
-class Readpst < Formula
- url 'http://www.five-ten-sg.com/libpst/packages/libpst-0.6.49.tar.gz'
- homepage 'http://www.five-ten-sg.com/libpst/'
- md5 'a0a0f927e82ab14bb042bd8bbd97c312'
-
- def install
- system "./configure", "--disable-dependency-tracking",
- "--prefix=#{prefix}", "--mandir=#{man}",
- "--disable-python"
- system "make"
- ENV.j1 # Install is not parallel-safe
- system "make install"
- end
-end