homebrew-core/Formula/despotify.rb

18 lines
427 B
Ruby

require 'formula'
class Despotify < Formula
head 'https://despotify.svn.sourceforge.net/svnroot/despotify/src'
homepage 'http://despotify.se/'
depends_on 'pkg-config' => :build
depends_on 'libao'
depends_on 'libvorbis'
def install
system "make Makefile.local.mk"
inreplace "Makefile.local.mk", "# INSTALL_PREFIX = /usr", "INSTALL_PREFIX = #{prefix}"
system "make"
system "make install"
end
end