mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add libtar.
* gnu/packages/compression.scm (libtar): New variable.
This commit is contained in:
parent
1d642af987
commit
58593975b0
1 changed files with 21 additions and 0 deletions
|
@ -94,6 +94,27 @@ (define-public fastjar
|
|||
utility. Instead of being written in Java, FastJar is written in C.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public libtar
|
||||
(package
|
||||
(name "libtar")
|
||||
(version "1.2.11")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"ftp://ftp.feep.net/pub/software/libtar/libtar-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1f3vx1wa69a6c5y0z0aakd81gygirdcm0vimazg433q8nyvfybja"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments `(#:tests? #f)) ;no "check" target
|
||||
(synopsis "C library for manipulating POSIX tar files")
|
||||
(description
|
||||
"libtar is a C library for manipulating POSIX tar files. It handles
|
||||
adding and extracting files to/from a tar archive.")
|
||||
(home-page "http://www.feep.net/libtar/")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public gzip
|
||||
(package
|
||||
(name "gzip")
|
||||
|
|
Loading…
Reference in a new issue