xref: /freebsd/packages/libarchive/libarchive.ucl (revision bb75b0d581f74e22a68d7868ad1f5da1146a8de0)
1*bb75b0d5SLexi Winter/*
2*bb75b0d5SLexi Winter * Copyright (c) 2003-2007 Tim Kientzle
3*bb75b0d5SLexi Winter * All rights reserved.
4*bb75b0d5SLexi Winter *
5*bb75b0d5SLexi Winter * Redistribution and use in source and binary forms, with or without
6*bb75b0d5SLexi Winter * modification, are permitted provided that the following conditions
7*bb75b0d5SLexi Winter * are met:
8*bb75b0d5SLexi Winter * 1. Redistributions of source code must retain the above copyright
9*bb75b0d5SLexi Winter *    notice, this list of conditions and the following disclaimer.
10*bb75b0d5SLexi Winter * 2. Redistributions in binary form must reproduce the above copyright
11*bb75b0d5SLexi Winter *    notice, this list of conditions and the following disclaimer in the
12*bb75b0d5SLexi Winter *    documentation and/or other materials provided with the distribution.
13*bb75b0d5SLexi Winter *
14*bb75b0d5SLexi Winter * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15*bb75b0d5SLexi Winter * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16*bb75b0d5SLexi Winter * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17*bb75b0d5SLexi Winter * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18*bb75b0d5SLexi Winter * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19*bb75b0d5SLexi Winter * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20*bb75b0d5SLexi Winter * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21*bb75b0d5SLexi Winter * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22*bb75b0d5SLexi Winter * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23*bb75b0d5SLexi Winter * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24*bb75b0d5SLexi Winter * SUCH DAMAGE.
25*bb75b0d5SLexi Winter */
26*bb75b0d5SLexi Winter
27*bb75b0d5SLexi Wintercomment = "Library for reading and writing streaming archives"
28*bb75b0d5SLexi Winter
29*bb75b0d5SLexi Winterdesc = <<EOD
30*bb75b0d5SLexi WinterThe libarchive library provides a flexible interface for reading and writing
31*bb75b0d5SLexi Winterarchives in various formats such as tar and cpio.  libarchive also supports
32*bb75b0d5SLexi Winterreading and writing archives compressed using various compression filters
33*bb75b0d5SLexi Wintersuch as gzip and bzip2.
34*bb75b0d5SLexi WinterEOD
35