Commit 130e5296 authored by Chris Thurber's avatar Chris Thurber Committed by GitHub

Merge pull request #2154 from uberhacker/add-tack-package

Add tack package
parents 9d2ed818 1e6dcd7d
require 'package'
class Tack < Package
description 'terminfo action checker'
homepage 'https://www.gnu.org/software/ncurses/'
version '1.08'
source_url 'https://ftpmirror.gnu.org/ncurses/tack-1.08.tar.gz'
source_sha256 '60f8515eed87176e1f74ac81372645df14dcffbf200d778353e56f640d55b1f2'
binary_url ({
})
binary_sha256 ({
})
depends_on 'ncurses'
def self.build
system './configure',
"--prefix=#{CREW_PREFIX}",
"CPPFLAGS=-I#{CREW_PREFIX}/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