Commit b8adbe70 authored by lyxell's avatar lyxell Committed by GitHub

Merge pull request #370 from cstrouse/add-libtool

Add libtool (2.4.6) package
parents 278c3a9b f6b12fcb
require 'package'
class Libtool < Package
version '2.4.6'
source_url 'https://ftp.gnu.org/gnu/libtool/libtool-2.4.6.tar.gz'
source_sha1 '25b6931265230a06f0fc2146df64c04e5ae6ec33'
depends_on 'buildessential'
def self.build
system "./configure --prefix=/usr/local"
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