Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
chromebrew
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Łukasz Nowak
chromebrew
Commits
8cceaae7
Commit
8cceaae7
authored
Jun 23, 2020
by
Casey Strouse
Committed by
GitHub
Jun 23, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4133 from uberhacker/add-pre-built-binaries-roswell-package
Add pre-built binaries for roswell
parents
7a567850
eec24a5b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
+22
-0
packages/roswell.rb
packages/roswell.rb
+22
-0
No files found.
packages/roswell.rb
View file @
8cceaae7
...
@@ -9,8 +9,16 @@ class Roswell < Package
...
@@ -9,8 +9,16 @@ class Roswell < Package
source_sha256
'798b96fdcb8c89445b36692b31570bb99882d83719d6310d969ccfcb2a35a1d4'
source_sha256
'798b96fdcb8c89445b36692b31570bb99882d83719d6310d969ccfcb2a35a1d4'
binary_url
({
binary_url
({
aarch64:
'https://dl.bintray.com/chromebrew/chromebrew/roswell-20.01.14.104-chromeos-armv7l.tar.xz'
,
armv7l:
'https://dl.bintray.com/chromebrew/chromebrew/roswell-20.01.14.104-chromeos-armv7l.tar.xz'
,
i686:
'https://dl.bintray.com/chromebrew/chromebrew/roswell-20.01.14.104-chromeos-i686.tar.xz'
,
x86_64:
'https://dl.bintray.com/chromebrew/chromebrew/roswell-20.01.14.104-chromeos-x86_64.tar.xz'
,
})
})
binary_sha256
({
binary_sha256
({
aarch64:
'3c3a54706ecb418ded5e27b9672a6a11e29eaf778e0c6bb44b18ab16050ff463'
,
armv7l:
'3c3a54706ecb418ded5e27b9672a6a11e29eaf778e0c6bb44b18ab16050ff463'
,
i686:
'221ba9a7cadf7354584c53a200f9154b09e4cda6193a9bfa93fce1afed3a5369'
,
x86_64:
'4df5fe6db244b10c432cf45a5db394e7ccc2f25be37724a0e0ca436051bc0bbb'
,
})
})
depends_on
'brotli'
depends_on
'brotli'
...
@@ -19,6 +27,7 @@ class Roswell < Package
...
@@ -19,6 +27,7 @@ class Roswell < Package
depends_on
'libnghttp2'
depends_on
'libnghttp2'
depends_on
'openldap'
depends_on
'openldap'
depends_on
'rtmpdump'
depends_on
'rtmpdump'
depends_on
'xdg_base'
def
self
.
build
def
self
.
build
system
'sh bootstrap'
system
'sh bootstrap'
...
@@ -28,5 +37,18 @@ class Roswell < Package
...
@@ -28,5 +37,18 @@ class Roswell < Package
def
self
.
install
def
self
.
install
system
'make'
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
'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
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment