blob: 76c444d80a024e150760e5591aefe4aee1273e94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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
|