mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
48 lines
1.7 KiB
Ruby
48 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'
|
|
compatibility 'x86_64'
|
|
case ARCH
|
|
when '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'
|
|
end
|
|
|
|
binary_url ({
|
|
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/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
|