id3ed added
Closes Homebrew/homebrew#35426. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
parent
cdf602212c
commit
af5515f532
1 changed files with 21 additions and 0 deletions
21
Formula/id3ed.rb
Normal file
21
Formula/id3ed.rb
Normal file
|
@ -0,0 +1,21 @@
|
|||
class Id3ed < Formula
|
||||
homepage "http://code.fluffytapeworm.com/projects/id3ed"
|
||||
url "http://code.fluffytapeworm.com/projects/id3ed/id3ed-1.10.4.tar.gz"
|
||||
sha1 "b699e645fcea2fa42658886621eb10531d24008a"
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug",
|
||||
"--disable-dependency-tracking",
|
||||
"--disable-silent-rules",
|
||||
"--prefix=#{prefix}",
|
||||
"--bindir=#{bin}/",
|
||||
"--mandir=#{man1}"
|
||||
bin.mkpath
|
||||
man1.mkpath
|
||||
system "make", "install"
|
||||
end
|
||||
|
||||
test do
|
||||
system "#{bin}/id3ed", "-r", "-q", test_fixtures("test.mp3")
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue