AtomicParsley formula

AtomicParsley is a lightweight command line program for reading, parsing and
setting metadata into MPEG-4 files
master
Ben Alpert 2009-09-07 16:54:41 -06:00 committed by Max Howell
parent 897f4e0655
commit 0f59c8c8ea
1 changed files with 17 additions and 0 deletions

17
Formula/atomicparsley.rb Normal file
View File

@ -0,0 +1,17 @@
require 'brewkit'
class Atomicparsley <Formula
@url='http://downloads.sourceforge.net/project/atomicparsley/atomicparsley/AtomicParsley%20v0.9.0/AtomicParsley-source-0.9.0.zip'
@homepage='http://atomicparsley.sourceforge.net/'
@md5='681e6ecec2921c98e07a9262bdcd6cf2'
def patches
{ :p0 => "http://pastie.org/609011.txt" }
end
def install
Dir.chdir("AtomicParsley-source-0.9.0")
system "g++ #{ENV['CXXFLAGS']} -o AtomicParsley -framework Cocoa -DDARWIN_PLATFORM *.mm *.cpp"
bin.install "AtomicParsley"
end
end