Commit 53015e75 authored by Ed Reel's avatar Ed Reel Committed by GitHub

Merge pull request #1453 from cstrouse/add-irssi

Add irssi package
parents 537edfed 23a7e1fa
require 'package'
class Irssi < Package
description 'Modular text mode IRC client with Perl scripting'
homepage 'https://irssi.org/'
version '1.0.5'
source_url 'https://github.com/irssi/irssi/releases/download/1.0.5/irssi-1.0.5.tar.xz'
source_sha256 'c2556427e12eb06cabfed40839ac6f57eb8b1aa6365fab6dfcd331b7a04bb914'
binary_url ({
})
binary_sha256 ({
})
depends_on 'ncurses'
depends_on 'openssl'
depends_on 'perl'
def self.build
system './configure',
"--prefix=#{CREW_PREFIX}",
"--libdir=#{CREW_LIB_PREFIX}",
"--sysconfdir=#{CREW_PREFIX}/etc"
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