yamdi: fix audit
yamdi: * Use `system "#{ENV.cc}", "#{ENV.cflags}", "yamdi.c", "-o", "yamdi"` instead of `system "#{ENV.cc} #{ENV.cflags} yamdi.c -o yamdi"` * http://yamdi.sourceforge.net/ should be `https://yamdi.sourceforge.io/` Closes #9886. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
parent
4173a3de2d
commit
2892ef0172
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
class Yamdi < Formula
|
||||
desc "Add metadata to Flash video"
|
||||
homepage "http://yamdi.sourceforge.net/"
|
||||
homepage "https://yamdi.sourceforge.io/"
|
||||
url "https://downloads.sourceforge.net/project/yamdi/yamdi/1.9/yamdi-1.9.tar.gz"
|
||||
sha256 "4a6630f27f6c22bcd95982bf3357747d19f40bd98297a569e9c77468b756f715"
|
||||
|
||||
|
@ -13,7 +13,7 @@ class Yamdi < Formula
|
|||
end
|
||||
|
||||
def install
|
||||
system "#{ENV.cc} #{ENV.cflags} yamdi.c -o yamdi"
|
||||
system ENV.cc, ENV.cflags, "yamdi.c", "-o", "yamdi"
|
||||
bin.install "yamdi"
|
||||
man1.install "man1/yamdi.1"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue