Files
chromebrew/packages/roswell.rb
Maximilian Downey Twiss f6dc1d8d4e Derive binary_url in package.rb (#7082)
* Add binary_compression value to each package

* Remove binary_url values and arrays

* Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
2024-01-25 11:03:31 -05:00

51 lines
1.6 KiB
Ruby

require 'package'
class Roswell < Package
description 'A lisp installer and launcher for major environment.'
homepage 'https://github.com/roswell/roswell'
version '20.01.14.104'
license 'MIT'
compatibility 'all'
source_url 'https://github.com/roswell/roswell/archive/v20.01.14.104.tar.gz'
source_sha256 '798b96fdcb8c89445b36692b31570bb99882d83719d6310d969ccfcb2a35a1d4'
binary_compression 'tar.xz'
binary_sha256({
aarch64: '3c3a54706ecb418ded5e27b9672a6a11e29eaf778e0c6bb44b18ab16050ff463',
armv7l: '3c3a54706ecb418ded5e27b9672a6a11e29eaf778e0c6bb44b18ab16050ff463',
i686: '221ba9a7cadf7354584c53a200f9154b09e4cda6193a9bfa93fce1afed3a5369',
x86_64: '4df5fe6db244b10c432cf45a5db394e7ccc2f25be37724a0e0ca436051bc0bbb'
})
depends_on 'brotli'
depends_on 'curl'
depends_on 'libcyrussasl'
depends_on 'libnghttp2'
depends_on 'openldap'
depends_on 'rtmpdump'
depends_on 'xdg_base'
def self.build
system 'sh bootstrap'
system './configure', "--prefix=#{CREW_PREFIX}"
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
FileUtils.mkdir_p CREW_DEST_HOME
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/.config/.roswell"
FileUtils.ln_s "#{CREW_PREFIX}/.config/.roswell", "#{CREW_DEST_HOME}/.roswell"
end
def self.postinstall
puts
puts "To finish the installation, type 'ros'.".lightblue
puts
puts 'To completely remove, execute the following:'.lightblue
puts 'crew remove roswell'.lightblue
puts "rm -rf #{CREW_PREFIX}/.config/.roswell".lightblue
puts
end
end