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

47 lines
1.7 KiB
Ruby

require 'package'
class Wing < Package
description 'Wing Personal is a free Python IDE designed for students and hobbyists.'
homepage 'https://wingware.com/'
version '7.2.1.0'
license 'Wingware-EULA'
compatibility 'x86_64'
source_url 'https://wingware.com/pub/wing-personal/7.2.1.0/wing-personal-7.2.1.0-linux-x64.tar.bz2'
source_sha256 'e42a8269a08c8bff6a91d021dcc11de8ab0b007a5a267bdeb870e7369f155064'
depends_on 'sommelier'
binary_url({
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/wing/7.2.1.0_x86_64/wing-7.2.1.0-chromeos-x86_64.tar.xz'
})
binary_sha256({
x86_64: '8be03ea9bcfa884c4f4a324190ecf6cbefd7b82389e264b6a35e318f30ec7ed3'
})
def self.patch
system "sed -i 's,/usr/bin/python,#{CREW_PREFIX}/bin/python,' wing-install.py"
end
def self.install
# The install is interactive, so remember to prefix directories with #{CREW_PREFIX} when prompted.
system './wing-install.py'
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share"
FileUtils.mkdir_p "#{CREW_DEST_HOME}/.wingpersonal7"
system "touch #{CREW_DEST_HOME}/.wingpersonal7/ide.log"
FileUtils.cp "#{CREW_PREFIX}/bin/wing-personal7.2", "#{CREW_DEST_PREFIX}/bin"
FileUtils.cp_r "#{CREW_PREFIX}/share/wing-personal7.2", "#{CREW_DEST_PREFIX}/share"
FileUtils.ln_s "#{CREW_PREFIX}/share/wing-personal7.2/wing-personal", "#{CREW_DEST_PREFIX}/bin/wing"
end
def self.postinstall
puts
puts "Type 'wing' to get started.".lightblue
puts
puts 'To completely remove including all preferences, execute the following:'.lightblue
puts 'crew remove wing'.lightblue
puts 'rm -rf ~/.wingpersonal7'.lightblue
puts
end
end