homebrew-core/Formula/yamdi.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

12 lines
396 B
Ruby

class Yamdi < Formula
desc "Add metadata to Flash video"
homepage "http://yamdi.sourceforge.net/"
url "https://downloads.sourceforge.net/project/yamdi/yamdi/1.9/yamdi-1.9.tar.gz"
sha256 "4a6630f27f6c22bcd95982bf3357747d19f40bd98297a569e9c77468b756f715"
def install
system "#{ENV.cc} #{ENV.cflags} yamdi.c -o yamdi"
bin.install "yamdi"
man1.install "man1/yamdi.1"
end
end