Commit babfeb00 authored by Damian Montero's avatar Damian Montero Committed by GitHub

Merge pull request #356 from richard-fisher/memcached

add memcached package
parents 640626bf c13ebcb5
require 'package'
class Memcached < Package
version '1.4.34'
source_url 'https://memcached.org/files/memcached-1.4.34.tar.gz'
source_sha1 '7c7214f5183c6e20c22b243e21ed1ffddb91497e'
depends_on 'libevent'
def self.build
system "./configure"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment