mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
14 lines
357 B
Ruby
14 lines
357 B
Ruby
require 'package'
|
|
Package.load_package("#{__dir__}/perl.rb")
|
|
|
|
class Perl_time_hires < Package
|
|
description 'High resolution alarm, sleep, gettimeofday, interval timers Time::HiRes'
|
|
homepage 'https://metacpan.org/pod/Time::HiRes'
|
|
version Perl.version
|
|
license 'GPL-1+ or Artistic'
|
|
compatibility 'all'
|
|
|
|
# included in main perl package
|
|
is_fake
|
|
end
|