Commit 45297079 authored by Casey Strouse's avatar Casey Strouse

Add package for pv (1.6.0)

This adds pv (pipe viewer) version 1.6.0. The pv command allows you to monitor the progress of data as is passes through command pipelines.

Tested as working properly on Samsung XE50013-K01US. All tests pass when running `make test`.
parent babfeb00
require 'package'
class Pv < Package
version '1.6.0'
source_url 'http://www.ivarch.com/programs/sources/pv-1.6.0.tar.gz'
source_sha1 '395ce62f4f3e035b86c77038f04b96c5aa233595'
def self.build
system "./configure"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment