4f9f0d0bf5
- All Debian software is now mirrored by ftp.us.debian.org. - LibFFI is mirrored by ftp.sourceware.org. - All kernel.org software is now mirrored by mirrorservice.org. Fixes Homebrew/homebrew#7478.
24 lines
796 B
Ruby
24 lines
796 B
Ruby
require 'formula'
|
|
|
|
class Liblockfile < Formula
|
|
url 'http://mirrors.kernel.org/debian/pool/main/libl/liblockfile/liblockfile_1.08.orig.tar.gz'
|
|
mirror 'http://ftp.us.debian.org/debian/pool/main/libl/liblockfile/liblockfile_1.08.orig.tar.gz'
|
|
homepage 'http://packages.qa.debian.org/libl/liblockfile.html'
|
|
md5 'c24e2dfb4a2aab0263fe5ac1564d305e'
|
|
|
|
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
|