diff options
| author | Sascha Kratky | 2010-09-22 20:35:33 +0200 |
|---|---|---|
| committer | Mike McQuaid | 2010-09-23 20:14:13 +0100 |
| commit | b1586986a1cb6aab4c9231df74783cb7bb1fbd00 (patch) | |
| tree | 60242662e6b60e89d4f0691fce5a56c39a164548 | |
| parent | 9ee0bcc2317dc767482e4a8ee146798cde045cfd (diff) | |
| download | homebrew-b1586986a1cb6aab4c9231df74783cb7bb1fbd00.tar.bz2 | |
New formula: liblockfile
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
| -rw-r--r-- | Library/Formula/liblockfile.rb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Library/Formula/liblockfile.rb b/Library/Formula/liblockfile.rb new file mode 100644 index 000000000..6f2f90376 --- /dev/null +++ b/Library/Formula/liblockfile.rb @@ -0,0 +1,23 @@ +require 'formula' + +class Liblockfile <Formula + url 'http://ftp.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 |
