diff options
author | ashish <ashish@FreeBSD.org> | 2011-05-09 03:00:40 +0800 |
---|---|---|
committer | ashish <ashish@FreeBSD.org> | 2011-05-09 03:00:40 +0800 |
commit | 09bf04ad10d4189246827f0044dab9a0bd68ab6f (patch) | |
tree | 47b1e7d45b8df33c8386f6e11280d95250b07083 /archivers | |
parent | 2e62e45998141041d4aac86cbed60b67d4b8f423 (diff) | |
download | freebsd-ports-gnome-09bf04ad10d4189246827f0044dab9a0bd68ab6f.tar.gz freebsd-ports-gnome-09bf04ad10d4189246827f0044dab9a0bd68ab6f.tar.zst freebsd-ports-gnome-09bf04ad10d4189246827f0044dab9a0bd68ab6f.zip |
This library is for working with ".tar" archive files. It can read and
write a range of common variations of archive format including V7,
USTAR, POSIX and GNU formats. It provides support for packing and
unpacking portable archives. This makes it suitable for distribution
but not backup because details like file ownership and exact
permissions are not preserved.
WWW: http://hackage.haskell.org/package/tar
Obtained from: FreeBSD Haskell
Approved by: pgj (mentor)
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/hs-tar/Makefile | 18 | ||||
-rw-r--r-- | archivers/hs-tar/distinfo | 2 | ||||
-rw-r--r-- | archivers/hs-tar/pkg-descr | 8 |
3 files changed, 28 insertions, 0 deletions
diff --git a/archivers/hs-tar/Makefile b/archivers/hs-tar/Makefile new file mode 100644 index 000000000000..0d6acda30697 --- /dev/null +++ b/archivers/hs-tar/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: hs-tar +# Date created: 2010-08-17 +# Whom: haskell@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= tar +PORTVERSION= 0.3.1.0 +CATEGORIES= archivers haskell + +MAINTAINER= haskell@FreeBSD.org +COMMENT= Haskell library for reading/writing/manipulating tar archives + +LICENSE= BSD + +.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" +.include <bsd.port.mk> diff --git a/archivers/hs-tar/distinfo b/archivers/hs-tar/distinfo new file mode 100644 index 000000000000..ce1ba44eb79c --- /dev/null +++ b/archivers/hs-tar/distinfo @@ -0,0 +1,2 @@ +SHA256 (cabal/tar-0.3.1.0.tar.gz) = 0364496ecf0d2de16577fe371a631bdd8a9e2cb3b5377f66c860f4e30bd626d8 +SIZE (cabal/tar-0.3.1.0.tar.gz) = 15840 diff --git a/archivers/hs-tar/pkg-descr b/archivers/hs-tar/pkg-descr new file mode 100644 index 000000000000..ca3b943f2666 --- /dev/null +++ b/archivers/hs-tar/pkg-descr @@ -0,0 +1,8 @@ +This library is for working with ".tar" archive files. It can read and +write a range of common variations of archive format including V7, +USTAR, POSIX and GNU formats. It provides support for packing and +unpacking portable archives. This makes it suitable for distribution +but not backup because details like file ownership and exact +permissions are not preserved. + +WWW: http://hackage.haskell.org/package/tar |