Add adplug

master
palxex 2010-07-02 10:12:05 +08:00 committed by Adam Vandenberg
parent 396de29a49
commit 08caeac364
1 changed files with 15 additions and 0 deletions

15
Formula/adplug.rb Normal file
View File

@ -0,0 +1,15 @@
require 'formula'
class Adplug <Formula
url 'http://downloads.sourceforge.net/project/adplug/AdPlug%20core%20library/2.2.1/adplug-2.2.1.tar.bz2'
homepage 'http://adplug.sf.net'
md5 '8f815fd5d254de0fe5df818df9d1d8af'
depends_on 'pkg-config'
depends_on 'libbinio'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end