diff options
author | Teddy Wing | 2021-04-18 04:51:53 +0200 |
---|---|---|
committer | Teddy Wing | 2021-04-18 04:51:53 +0200 |
commit | 6446b2e99979ea08ef2f27b935a7af6c84afc4dd (patch) | |
tree | b03599843d16d1ed16a9a012e78d9296019c3fce | |
parent | 7c5cf715402ac433e38f6221840432bef286d14d (diff) | |
download | homebrew-formulae-6446b2e99979ea08ef2f27b935a7af6c84afc4dd.tar.bz2 |
formurapid 0.0.1
-rw-r--r-- | HomebrewFormula/formurapid.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/HomebrewFormula/formurapid.rb b/HomebrewFormula/formurapid.rb new file mode 100644 index 0000000..8f0f688 --- /dev/null +++ b/HomebrewFormula/formurapid.rb @@ -0,0 +1,19 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + +class Formurapid < Formula + desc "Fill in a PDF form using a text file" + homepage "https://github.com/teddywing/formurapid" + url "https://github.com/teddywing/formurapid/releases/download/v0.0.1/formurapid_0.0.1_x86_64-apple-darwin.tar.bz2" + sha256 "4c66ad4098712f10d19b04c998071cd8de334b1bc5ac10fb6cb48b4446f03dd0" + + def install + bin.install Dir["bin/*"] + man1.install Dir["share/man/man1/*"] + end + + test do + assert_equal version, shell_output("formurapid --version").strip + end +end |