Files
chromebrew/packages/ndisc6.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

34 lines
1.5 KiB
Ruby

require 'package'
class Ndisc6 < Package
description 'Small collection of useful tools for IPv6 networking (ndisc6, rdisc6, tcptraceroute6, traceroute6, rdnssd).'
homepage 'https://www.remlab.net/ndisc6/'
version '1.0.4'
license 'GPL-2'
compatibility 'all'
source_url 'https://www.remlab.net/files/ndisc6/ndisc6-1.0.4.tar.bz2'
source_sha256 'abb1da4a98d94e5abe1dd7b1c975de540306b0581cbbd36aff035118b2f25c1f'
binary_url({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/ndisc6/1.0.4_armv7l/ndisc6-1.0.4-chromeos-armv7l.tar.xz',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/ndisc6/1.0.4_armv7l/ndisc6-1.0.4-chromeos-armv7l.tar.xz',
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/ndisc6/1.0.4_i686/ndisc6-1.0.4-chromeos-i686.tar.xz',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/ndisc6/1.0.4_x86_64/ndisc6-1.0.4-chromeos-x86_64.tar.xz'
})
binary_sha256({
aarch64: '5a9f7557dd481117483f81035f168a8c0de9a2210c57b049219727f6546fc2b1',
armv7l: '5a9f7557dd481117483f81035f168a8c0de9a2210c57b049219727f6546fc2b1',
i686: 'b2d727341b6a5302dda0da0529635b11cc4e04a1ca1e8eb129ab53bafae17a0f',
x86_64: '2fe334ddc96bd956663ceb593383800e9d8216fb867beadd5ecb099d41504148'
})
def self.build
system "./configure #{CREW_OPTIONS} --disable-suid-install"
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end