Commit 66e3ad9c authored by Damian Montero's avatar Damian Montero Committed by GitHub

Merge pull request #317 from cstrouse/add-socat

Add package for socat (1.7.3.1)
parents f9c2291f 3d8e9ddc
require 'package'
class Socat < Package
version '1.7.3.1'
source_url 'http://www.dest-unreach.org/socat/download/socat-1.7.3.1.tar.gz'
source_sha1 'a6f1d8ab3e85f565dbe172f33a9be6708dd52ffb'
depends_on 'readline'
depends_on 'openssl'
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