aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/memcache-php.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/memcache-php.rb')
-rw-r--r--Library/Formula/memcache-php.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/Library/Formula/memcache-php.rb b/Library/Formula/memcache-php.rb
deleted file mode 100644
index 4ca83c291..000000000
--- a/Library/Formula/memcache-php.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-require 'formula'
-
-class MemcachePhp < Formula
- homepage 'http://pecl.php.net/package/memcache'
- url 'http://pecl.php.net/get/memcache-2.2.6.tgz'
- md5 '9542f1886b72ffbcb039a5c21796fe8a'
-
- def install
- cd "memcache-#{version}" do
- system "phpize"
- system "./configure", "--prefix=#{prefix}"
- system "make"
- prefix.install 'modules/memcache.so'
- end
- end
-
- def caveats; <<-EOS.undent
- To finish installing memcache:
- * Add the following line to php.ini:
- extension="#{prefix}/memcache.so"
- * Restart your webserver
- EOS
- end
-end