cc3ee13629
Closes Homebrew/homebrew#48387. Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
18 lines
501 B
Ruby
18 lines
501 B
Ruby
class Slugify < Formula
|
|
desc "Convert filenames and directories to a web friendly format"
|
|
homepage "https://github.com/benlinton/slugify"
|
|
url "https://github.com/benlinton/slugify/archive/v1.0.1.tar.gz"
|
|
sha256 "f6873b062119d3eaa7d89254fc6e241debf074da02e3189f12e08b372af096e5"
|
|
head "https://github.com/benlinton/slugify.git"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "slugify"
|
|
man1.install "slugify.1"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/slugify", "-n", "dry_run.txt"
|
|
end
|
|
end
|