diff options
author | Teddy Wing | 2019-11-03 02:09:54 +0100 |
---|---|---|
committer | Teddy Wing | 2019-11-03 02:09:54 +0100 |
commit | 3e4267aae8a2b6aed258c7001b4fc9399b77c5b5 (patch) | |
tree | 95267284c605e97cc8aab0a90f9759a8d4cd2bf6 | |
parent | 0970ddf2c67f0fe9f269efeeba24b146407e5fbc (diff) | |
download | homebrew-formulae-3e4267aae8a2b6aed258c7001b4fc9399b77c5b5.tar.bz2 |
Add 'pdf-urls' formula
-rw-r--r-- | HomebrewFormula/pdf-urls.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/HomebrewFormula/pdf-urls.rb b/HomebrewFormula/pdf-urls.rb new file mode 100644 index 0000000..a109eef --- /dev/null +++ b/HomebrewFormula/pdf-urls.rb @@ -0,0 +1,15 @@ +# 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 PdfUrls < Formula + desc "Extract all URLs from a PDF file" + homepage "https://github.com/teddywing/pdf-urls" + url "https://github.com/teddywing/pdf-urls/releases/download/v0.0.1/pdf-urls_0.0.1_x86_64-apple-darwin.tar.bz2" + sha256 "ff0bcb64e48929723f980beb74bc21898b8078aa4003766f08c3c3d9d66b7543" + + def install + bin.install "pdf-urls" + man1.install "pdf-urls.1" + end +end |