Skip to content

Commit

Permalink
tmpmail 1.2.3 (new formula)
Browse files Browse the repository at this point in the history
Signed-off-by: Rui Chen <[email protected]>

autobump: add tmpmail

Signed-off-by: Rui Chen <[email protected]>
  • Loading branch information
chenrui333 committed Aug 16, 2024
1 parent 949c01f commit a45fbe4
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/autobump.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2597,6 +2597,7 @@ tio
tippecanoe
tkey-ssh-agent
tlsx
tmpmail
tmux-mem-cpu-load
tmux-xpanes
tmuxp
Expand Down
23 changes: 23 additions & 0 deletions Formula/t/tmpmail.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
class Tmpmail < Formula
desc "Temporary email right from your terminal written in POSIX sh"
homepage "https://github.com/sdushantha/tmpmail"
url "https://github.com/sdushantha/tmpmail/archive/refs/tags/v1.2.3.tar.gz"
sha256 "8d12f5474b89ee585413ec32cc9991a971a00e8bb63ac8e5a2e736f734f37cfb"
license "MIT"
head "https://github.com/sdushantha/tmpmail.git", branch: "master"

depends_on "jq"
depends_on "w3m"
depends_on "xclip"

def install
bin.install "tmpmail"
man1.install "tmpmail.1"
end

test do
system bin/"tmpmail", "--generate"

assert_match version.to_s, shell_output("#{bin}/tmpmail --version")
end
end

0 comments on commit a45fbe4

Please sign in to comment.