Commit 29435e54 authored by lyxell's avatar lyxell Committed by GitHub

Merge pull request #406 from cstrouse/add-gdb

Add gdb (7.12.1) package
parents 32271bee c614aa5a
require 'package'
class Gdb < Package
version '7.12.1.'
source_url 'https://ftp.gnu.org/gnu/gdb/gdb-7.12.1.tar.xz'
source_sha1 'ef77c5345d6f9fdcdf7a5d8503301242b701936e'
depends_on "buildessential"
depends_on "ncurses"
depends_on "texinfo"
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