Commit 23a7e1fa authored by Casey Strouse's avatar Casey Strouse

Add irssi package

irssi is a console IRC client with perl scripting support.

Tested as working on Samsung Chromebook Plus (aarch64).
parent 537edfed
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