homebrew-core/Formula/star.rb

21 lines
592 B
Ruby
Raw Normal View History

require 'formula'
class Star < Formula
homepage 'http://cdrecord.berlios.de/old/private/star.html'
2012-02-10 06:12:35 +00:00
url 'ftp://ftp.berlios.de/pub/star/star-1.5.1.tar.bz2'
md5 'f9a28f83702624c4c08ef1a343014c7a'
2011-11-30 02:55:55 +00:00
depends_on "smake" => :build
def install
system "smake", "GMAKE_NOWARN=true", "INS_BASE=#{prefix}", "MANDIR=share/man"
system "smake", "GMAKE_NOWARN=true", "INS_BASE=#{prefix}", "MANDIR=share/man", "install"
# Remove symlinks that override built-in utilities
2012-02-10 06:12:35 +00:00
(bin+'gnutar').unlink
(bin+'tar').unlink
(man1+'gnutar.1').unlink
(man1+'tar.1').unlink
end
end