2010-09-22 18:35:33 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Liblockfile < Formula
|
2010-09-22 18:35:33 +00:00
|
|
|
homepage 'http://packages.qa.debian.org/libl/liblockfile.html'
|
2012-09-04 18:48:20 +00:00
|
|
|
url 'http://mirrors.kernel.org/debian/pool/main/libl/liblockfile/liblockfile_1.09.orig.tar.gz'
|
|
|
|
mirror 'http://ftp.us.debian.org/debian/pool/main/libl/liblockfile/liblockfile_1.09.orig.tar.gz'
|
|
|
|
sha1 '6f3f170bc4c303435ab5b46a6aa49669e16a5a7d'
|
2010-09-22 18:35:33 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--disable-debug",
|
|
|
|
"--with-mailgroup=staff",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--sysconfdir=#{etc}",
|
|
|
|
"--mandir=#{man}"
|
|
|
|
bin.mkpath
|
|
|
|
lib.mkpath
|
|
|
|
include.mkpath
|
|
|
|
man1.mkpath
|
|
|
|
man3.mkpath
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|