diff options
| author | Steven Peters | 2013-03-27 12:12:57 -0700 |
|---|---|---|
| committer | Jack Nagel | 2013-04-13 20:41:53 -0500 |
| commit | 028f2b035111cd30a752f3b015b57add82799663 (patch) | |
| tree | f7225f0809c335210c8243656f76b2cf299afcfe /Library | |
| parent | f5b8a6abd01d93a6a072e2a9b32113c5d3067b85 (diff) | |
| download | homebrew-028f2b035111cd30a752f3b015b57add82799663.tar.bz2 | |
New formula: libtar
libtar provides a C interface to tar files. It installs include and
library files as well as an executable called libtar, which provides
similar functionality to tar and gnu-tar. I think there should be
no conflicts since the executable has a different name.
Closes #18780.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/libtar.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/libtar.rb b/Library/Formula/libtar.rb new file mode 100644 index 000000000..8295f7e9c --- /dev/null +++ b/Library/Formula/libtar.rb @@ -0,0 +1,15 @@ +require 'formula' + +class Libtar < Formula + homepage 'http://www.feep.net/libtar/' + url 'ftp://ftp.feep.net/pub/software/libtar/libtar-1.2.11.tar.gz' + sha1 '9611f23024b0e89aad1cfea301122186b3c160f8' + + def install + system "./configure", "--disable-debug", + "--disable-dependency-tracking", + "--prefix=#{prefix}", + "--mandir=#{man}" + system "make install" + end +end |
