Files
chromebrew/packages/ckermit.rb
Maximilian Downey Twiss de24923ee8 Add Rubocop CI (#7083)
* Rename IgnoredPatterns to AllowedPatterns.

* Exclude docopt.rb (not our code) from Rubocop

* Disable Style/RedundantReturn

* Disable Style/MutableConstant

* Disable Style/NumericLiterals

* Set Layout/IndentationStyle to spaces

* Temporarily disable various cops.

* Add Rubocop CI via Octocop

* Lint tree with rubocop -A -c .rubocop.yml

Co-authored-by: Satadru Pramanik <satadru@gmail.com>
2022-08-22 13:31:25 -04:00

39 lines
1.9 KiB
Ruby

require 'package'
class Ckermit < Package
description 'C-Kermit is a combined serial and network communication software package.'
homepage 'http://www.kermitproject.org/ck90.html'
version '8.0.211-1'
license 'Kermit'
compatibility 'all'
source_url 'https://fossies.org/linux/privat/old/cku211.tar.gz'
source_sha256 '0503518ef8f225d06749f7923ae84521bc358daf353222c75c009cd040dc5e26'
binary_url({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/ckermit/8.0.211-1_armv7l/ckermit-8.0.211-1-chromeos-armv7l.tar.xz',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/ckermit/8.0.211-1_armv7l/ckermit-8.0.211-1-chromeos-armv7l.tar.xz',
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/ckermit/8.0.211-1_i686/ckermit-8.0.211-1-chromeos-i686.tar.xz',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/ckermit/8.0.211-1_x86_64/ckermit-8.0.211-1-chromeos-x86_64.tar.xz'
})
binary_sha256({
aarch64: '5779bf0c226ec6ef42ad40c3e4a739524eb2a5d6cf4949404fc536529e3932d6',
armv7l: '5779bf0c226ec6ef42ad40c3e4a739524eb2a5d6cf4949404fc536529e3932d6',
i686: 'f2aadf15b263d81a760e48a7fc23f674a4833bb1af387bfce57396f772efdc84',
x86_64: '4740c149d172a854b916912da26d7afdaf61a91a20642fc8aa568cf734cde194'
})
depends_on 'ncurses'
def self.build
system "make KFLAGS='-DCK_NCURSES -I#{CREW_PREFIX}/include/ncurses' LNKFLAGS='-lresolv -lcrypt' linux"
end
def self.install
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/man/man1"
system 'make', "DESTDIR=#{CREW_DEST_DIR}", "manroot=#{CREW_DEST_PREFIX}/share", 'install'
system "sed -i \"s:#{CREW_DEST_PREFIX}:#{CREW_PREFIX}:g\" #{CREW_DEST_PREFIX}/bin/ckermit.ini"
system "ln -sf #{CREW_PREFIX}/bin/kermit #{CREW_DEST_PREFIX}/bin/kermit-sshsub"
end
end