aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cdlabelgen.rb
blob: 48a743c0761df27dcb69da645ae69d538afe154a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Cdlabelgen < Formula
  homepage 'http://www.aczoom.com/tools/cdinsert/'
  url 'http://www.aczoom.com/pub/tools/cdlabelgen-4.3.0.tgz'
  sha1 '1f7e1c34f7a5f409da19ca768a07778191264b19'

  def install
    man1.mkpath
    system "make", "install", "BASE_DIR=#{prefix}"
  end

  test do
    system "#{bin}/cdlabelgen -c TestTitle --output-file testout.eps"
    File.file?("testout.eps")
  end
end