From 26ad2f6b925cae7b6f1e9cd956ed1a900e839060 Mon Sep 17 00:00:00 2001 From: Ed Reel Date: Fri, 25 Jun 2021 16:43:56 -0500 Subject: [PATCH] Add shells package (#5903) --- README.md | 2 +- packages/shells.rb | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 packages/shells.rb diff --git a/README.md b/README.md index 65e092549..5e05eebd0 100644 --- a/README.md +++ b/README.md @@ -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! ------------- diff --git a/packages/shells.rb b/packages/shells.rb new file mode 100644 index 000000000..0619d98a3 --- /dev/null +++ b/packages/shells.rb @@ -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