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
nexedi
chromebrew
Commits
bfc41bfa
Commit
bfc41bfa
authored
Jun 21, 2021
by
Ed Reel
Committed by
GitHub
Jun 21, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add exodus package (#5883)
parent
d8535aea
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
1 deletion
+48
-1
README.md
README.md
+1
-1
packages/exodus.rb
packages/exodus.rb
+47
-0
No files found.
README.md
View file @
bfc41bfa
...
...
@@ -100,6 +100,7 @@ Latest Packages
| Name | Description | Date Added |
|:---|:---|:---|
| exodus | Exodus is a desktop crypto wallet | 2021-06-21 |
| snowflake | Snowflake (aka Muon) is a graphical SSH client. | 2021-06-19 |
| fd | A simple, fast and user-friendly alternative to find | 2021-06-08 |
| rdfind | Redundant data find - a program that finds duplicate files. | 2021-06-07 |
...
...
@@ -109,7 +110,6 @@ Latest Packages
| podofo | A PDF parsing, modification and creation library. | 2021-05-27 |
| gcloud | Command-line interface for Google Cloud Platform products and services | 2021-05-23 |
| upx | Extendable, high-performance executable packer for several executable formats | 2021-05-20 |
| ucl | Portable lossless data compression library written in ANSI C | 2021-05-20 |
Chat with us!
-------------
...
...
packages/exodus.rb
0 → 100644
View file @
bfc41bfa
require
'package'
class
Exodus
<
Package
description
'Exodus is a desktop crypto wallet'
homepage
'https://www.exodus.com/'
version
'21.6.18'
license
'Freeware'
compatibility
'x86_64'
source_url
'https://downloads.exodus.com/releases/exodus-linux-x64-21.6.18.zip'
source_sha256
'94f81db2bcd0eab66bec71a7ac8926173413894359de4ccf9324514894440679'
binary_url
({
x86_64:
'https://gitlab.com/api/v4/projects/26210301/packages/generic/exodus/21.6.18_x86_64/exodus-21.6.18-chromeos-x86_64.tpxz'
})
binary_sha256
({
x86_64:
'3e238cbb72121e8e67a8c276397ad9386056b250b3aad6d12bc6a788a05b84a7'
})
depends_on
'xdg_base'
depends_on
'sommelier'
def
self
.
install
FileUtils
.
mkdir_p
"
#{
CREW_DEST_PREFIX
}
/bin"
FileUtils
.
mkdir_p
"
#{
CREW_DEST_PREFIX
}
/share/Exodus-linux-x64"
FileUtils
.
mv
Dir
[
'*'
],
"
#{
CREW_DEST_PREFIX
}
/share/Exodus-linux-x64"
FileUtils
.
ln_s
"
#{
CREW_PREFIX
}
/share/Exodus-linux-x64/Exodus"
,
"
#{
CREW_DEST_PREFIX
}
/bin/exodus"
end
def
self
.
postinstall
puts
"
\n
Type 'exodus' to get started.
\n
"
.
lightblue
end
def
self
.
remove
config_dir
=
"
#{
CREW_PREFIX
}
/.config/Exodus"
if
Dir
.
exists?
config_dir
puts
"WARNING: This will remove all Exodus data!"
.
orange
print
"Would you like to remove the
#{
config_dir
}
directory? [y/N] "
case
STDIN
.
getc
when
"y"
,
"Y"
FileUtils
.
rm_rf
config_dir
puts
"
#{
config_dir
}
removed."
.
lightred
else
puts
"
#{
config_dir
}
saved."
.
lightgreen
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