homebrew-core/Formula/angband.rb
Adam Vandenberg fe707c9126 Update usage of libexec for roguelikes.
Since "libexec" folders under the Cellar are already private per
formula, there's no reason to create an additional folder underneath
for namespacing.

Removed the extra folder level from these formulas.
2009-10-01 15:17:29 +01:00

19 lines
582 B
Ruby

require 'brewkit'
class Angband <Formula
@url='http://rephial.org/downloads/3.0/angband-3.0.9b-src.tar.gz'
@md5='51a24fe3119e7eff8a8395d601b2747e'
@homepage='http://rephial.org/'
def install
system "./configure", "--prefix=#{prefix}",
"--enable-curses",
"--disable-x11",
"--disable-sdltest",
"--with-libpath=#{libexec}"
system "make"
# Install manually; 'make install' doesn't work.
bin.install "src/angband"
libexec.install Dir['lib/*']
end
end