mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
Add shells package (#5903)
This commit is contained in:
@@ -100,6 +100,7 @@ Latest Packages
|
||||
|
||||
| Name | Description | Date Added |
|
||||
|:---|:---|:---|
|
||||
| shells | Launch your Shells™ virtual desktop | 2021-06-25 |
|
||||
| codelobster | Free cross-platform IDE for PHP/HTML/CSS/JavaScript development | 2021-06-23 |
|
||||
| ltrace | ltrace intercepts and records dynamic library calls which are called by an executed process and the signals received by that process. | 2021-06-22 |
|
||||
| exodus | Exodus is a desktop crypto wallet | 2021-06-21 |
|
||||
@@ -109,7 +110,6 @@ Latest Packages
|
||||
| libcurl | Command line tool and library for transferring data with URLs. | 2021-06-07 |
|
||||
| pdfchain | PDF Chain is a graphical user interface for the PDF Toolkit (PDFtk). | 2021-06-01 |
|
||||
| pdftk | PDFtk is a simple tool for doing everyday things with PDF documents. | 2021-05-31 |
|
||||
| podofo | A PDF parsing, modification and creation library. | 2021-05-27 |
|
||||
|
||||
Chat with us!
|
||||
-------------
|
||||
|
||||
23
packages/shells.rb
Normal file
23
packages/shells.rb
Normal file
@@ -0,0 +1,23 @@
|
||||
require 'package'
|
||||
|
||||
class Shells < Package
|
||||
description 'Launch your Shells™ virtual desktop'
|
||||
homepage 'https://www.shells.com/'
|
||||
version '0.2b'
|
||||
license ''
|
||||
compatibility 'x86_64'
|
||||
source_url 'https://static.atonline.net/download/cswvf-5htgl5-77xz-glna-lowp-45nddony/shells-go-debian-buster-0.2b.tar.bz2'
|
||||
source_sha256 '6d1a8267056c5c372f2bc1918e022f618006e2bcec1869cf2bfbb7d33e8dbc84'
|
||||
|
||||
depends_on 'xcb_util_wm'
|
||||
depends_on 'sommelier'
|
||||
|
||||
def self.install
|
||||
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
|
||||
FileUtils.mv 'shells-go', "#{CREW_DEST_PREFIX}/bin/shells"
|
||||
end
|
||||
|
||||
def self.postinstall
|
||||
puts "\nType 'shells' to get started.\n".lightblue
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user