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

37 lines
1.5 KiB
Ruby

require 'package'
class Imake < Package
description 'A build automation system written for the X Window System.'
homepage 'https://xorg.freedesktop.org'
version '1.0.8'
license 'custom'
compatibility 'all'
source_url 'https://www.x.org/releases/individual/util/imake-1.0.8.tar.gz'
source_sha256 '8178a09bfef33ad5f61cb5cb62283df7d3a5682f014507d2e7cfd922485a5c00'
binary_url({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/imake/1.0.8_armv7l/imake-1.0.8-chromeos-armv7l.tar.xz',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/imake/1.0.8_armv7l/imake-1.0.8-chromeos-armv7l.tar.xz',
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/imake/1.0.8_i686/imake-1.0.8-chromeos-i686.tar.xz',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/imake/1.0.8_x86_64/imake-1.0.8-chromeos-x86_64.tar.xz'
})
binary_sha256({
aarch64: 'b990112a38f374af2bb69f84201c4c3234075e3ba5c3f91d5af4fe1660edf5af',
armv7l: 'b990112a38f374af2bb69f84201c4c3234075e3ba5c3f91d5af4fe1660edf5af',
i686: '3068b234517cb02e3e246554f4c390ad0fe72bf11535878094ae791e55ef584b',
x86_64: '1cef5aab03fa1906200b88b87d31be2d48e1a3b71d47b779fd4e53ea2a4bf3ee'
})
depends_on 'xorg_cf_files'
def self.build
system "./configure #{CREW_OPTIONS} \
--sysconfdir=#{CREW_PREFIX}/etc"
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end