blob: afff6194c814d5cc007de82b44aa53ad13a8a942 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Adplug < Formula
homepage 'http://adplug.sf.net'
url 'http://downloads.sourceforge.net/project/adplug/AdPlug%20core%20library/2.2.1/adplug-2.2.1.tar.bz2'
sha1 '5023282ff44f183c9b6d7da9f57f51595742a5f7'
depends_on 'pkg-config' => :build
depends_on 'libbinio'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|