homebrew-core/Formula/gnu-barcode.rb
Xu Cheng 164682182c gnu-barcode: add test
Closes Homebrew/homebrew#35383.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-12-31 14:51:59 +00:00

23 lines
772 B
Ruby

class GnuBarcode < Formula
homepage "http://www.gnu.org/software/barcode/"
url "http://ftpmirror.gnu.org/barcode/barcode-0.98.tar.gz"
mirror "http://ftp.gnu.org/gnu/barcode/barcode-0.98.tar.gz"
sha1 "15b9598bcaa67bcff1f63309d1a18840b9a12899"
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make", "MAN1DIR=#{man1}",
"MAN3DIR=#{man3}",
"INFODIR=#{info}",
"install"
end
test do
(testpath/"test.txt").write("12345")
system "#{bin}/barcode", "-e", "CODE39", "-i", "test.txt", "-o", "test.ps"
assert File.read("test.ps").start_with?("")
end
end