Commit 60a64de6 authored by lyxell's avatar lyxell Committed by GitHub

Merge pull request #441 from cstrouse/add-libedit

Add libedit (3.1) package
parents adc3190b c82aeda9
require 'package'
class Libedit < Package
version '3.1'
source_url 'http://thrysoee.dk/editline/libedit-20160903-3.1.tar.gz'
source_sha1 '55e327ee4661b13d20ebb411d790f2bb258271cf'
def self.build
system './configure --prefix=/usr/local CPPFLAGS="-I/usr/local/include/ncurses"'
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