Commit afb90b6c authored by lyxell's avatar lyxell Committed by GitHub

Merge pull request #691 from uberhacker/add-patchutils-package

Add patchutils package
parents 6babb766 82cd6fcc
require 'package'
class Patchutils < Package
version '0.3.4'
source_url 'http://cyberelk.net/tim/data/patchutils/stable/patchutils-0.3.4.tar.xz'
source_sha1 'b1d91eb1e2213450eae666a4701b3f917625dea3'
def self.build
system './configure --prefix=/usr/local'
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
def self.check
system "make", "check"
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