Commit 1045eecb authored by Casey Strouse's avatar Casey Strouse Committed by GitHub

Merge pull request #1300 from uberhacker/add-rlwrap-package

Add rlwrap package
parents ba25ff72 8b2c467d
require 'package'
class Rlwrap < Package
description 'A readline wrapper'
homepage 'https://github.com/hanslub42/rlwrap'
version '0.43'
source_url 'https://github.com/hanslub42/rlwrap/archive/v0.43.tar.gz'
source_sha256 '29e5a850fbe4753f353b0734e46ec0da043621bdcf7b52a89b77517f3941aade'
binary_url ({
})
binary_sha256 ({
})
depends_on 'autoconf'
depends_on 'automake'
depends_on 'readline'
def self.build
system "autoreconf --install"
system "./configure --prefix=#{CREW_PREFIX}"
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