-
-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Rui Chen <[email protected]> autobump: add tmpmail Signed-off-by: Rui Chen <[email protected]>
- Loading branch information
1 parent
949c01f
commit a45fbe4
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2597,6 +2597,7 @@ tio | |
tippecanoe | ||
tkey-ssh-agent | ||
tlsx | ||
tmpmail | ||
tmux-mem-cpu-load | ||
tmux-xpanes | ||
tmuxp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |