mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
add roswell package (#4132)
* add roswell package * remove binary entire section, add dependencies
This commit is contained in:
32
packages/roswell.rb
Normal file
32
packages/roswell.rb
Normal file
@@ -0,0 +1,32 @@
|
||||
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'
|
||||
compatibility 'all'
|
||||
source_url 'https://github.com/roswell/roswell/archive/v20.01.14.104.tar.gz'
|
||||
source_sha256 '798b96fdcb8c89445b36692b31570bb99882d83719d6310d969ccfcb2a35a1d4'
|
||||
|
||||
binary_url ({
|
||||
})
|
||||
binary_sha256 ({
|
||||
})
|
||||
|
||||
depends_on 'brotli'
|
||||
depends_on 'curl'
|
||||
depends_on 'libcyrussasl'
|
||||
depends_on 'libnghttp2'
|
||||
depends_on 'openldap'
|
||||
depends_on 'rtmpdump'
|
||||
|
||||
def self.build
|
||||
system 'sh bootstrap'
|
||||
system './configure', "--prefix=#{CREW_PREFIX}"
|
||||
system 'make'
|
||||
end
|
||||
|
||||
def self.install
|
||||
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user