diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-10-12 17:44:30 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-10-12 17:44:30 (EDT) |
commit | f6c2488b03b86743fe4923703d741b48dc71ae1c (patch) | |
tree | 43bd3d8ebd4a4fd8cf2dfaa687cc19bdb8f778c4 | |
parent | 5c067c424dd1696e691c23c3ab71285bd2dde9be (diff) |
Add binary packages
-rw-r--r-- | bsdcpio.pkg/control | 10 | ||||
-rw-r--r-- | bsdcpio.pkg/files | 1 | ||||
-rw-r--r-- | bsdtar.pkg/control | 10 | ||||
-rw-r--r-- | bsdtar.pkg/files | 1 | ||||
-rw-r--r-- | libarchive-dev.pkg/control | 8 | ||||
-rw-r--r-- | libarchive-dev.pkg/files | 4 | ||||
-rw-r--r-- | libarchive-doc.pkg/control | 8 | ||||
-rw-r--r-- | libarchive-doc.pkg/files | 1 | ||||
-rw-r--r-- | libarchive.13.pkg/control | 8 | ||||
-rw-r--r-- | libarchive.13.pkg/docs | 0 | ||||
-rw-r--r-- | libarchive.13.pkg/files | 1 | ||||
-rw-r--r-- | substvars | 8 |
12 files changed, 60 insertions, 0 deletions
diff --git a/bsdcpio.pkg/control b/bsdcpio.pkg/control new file mode 100644 index 0000000..591e22c --- /dev/null +++ b/bsdcpio.pkg/control @@ -0,0 +1,10 @@ +Architecture: any +Platform: all +Depends: libarchive.13 (= ${Binary-Version}), + libbz2.1.0, + liblzma.5, + libz.1, +Description: Implementation of the 'cpio' program from FreeBSD + The bsdcpio program is the default system 'cpio' program used on FreeBSD. + bsdcpio uses the libarchive library as a backend which does all of the work for + reading and writing archives in various formats. diff --git a/bsdcpio.pkg/files b/bsdcpio.pkg/files new file mode 100644 index 0000000..f9fb916 --- /dev/null +++ b/bsdcpio.pkg/files @@ -0,0 +1 @@ +/usr/bin/bsdcpio diff --git a/bsdtar.pkg/control b/bsdtar.pkg/control new file mode 100644 index 0000000..3662bd9 --- /dev/null +++ b/bsdtar.pkg/control @@ -0,0 +1,10 @@ +Architecture: any +Platform: all +Depends: libarchive.13 (= ${Binary-Version}), + libbz2.1.0, + liblzma.5, + libz.1, +Description: Implementation of the 'tar' program from FreeBSD + The bsdtar program is the default system 'tar' program used on FreeBSD. bsdtar + uses the libarchive library as a backend which does all of the work for reading + and writing archives in various formats. diff --git a/bsdtar.pkg/files b/bsdtar.pkg/files new file mode 100644 index 0000000..48a5fc2 --- /dev/null +++ b/bsdtar.pkg/files @@ -0,0 +1 @@ +/usr/bin/bsdtar diff --git a/libarchive-dev.pkg/control b/libarchive-dev.pkg/control new file mode 100644 index 0000000..6c61a18 --- /dev/null +++ b/libarchive-dev.pkg/control @@ -0,0 +1,8 @@ +Architecture: any +Platform: all +Depends: libarchive.13 (= ${Binary-Version}) +Description: Multi-format archive and compression library - development files + ${Common-Description} + . + This package provides development files for the multi-format archive and + compression library. diff --git a/libarchive-dev.pkg/files b/libarchive-dev.pkg/files new file mode 100644 index 0000000..d4545d3 --- /dev/null +++ b/libarchive-dev.pkg/files @@ -0,0 +1,4 @@ +/usr/include +/usr/lib/*/libarchive.a +/usr/lib/*/libarchive.so +/usr/lib/*/pkgconfig diff --git a/libarchive-doc.pkg/control b/libarchive-doc.pkg/control new file mode 100644 index 0000000..5cc661c --- /dev/null +++ b/libarchive-doc.pkg/control @@ -0,0 +1,8 @@ +Architecture: all +Platform: all +Depends: libarchive.13 (>= ${Source-Version}) +Description: Multi-format archive and compression library - documentation + ${Common-Description} + . + This package provides documentation for the multi-format archive and + compression library. diff --git a/libarchive-doc.pkg/files b/libarchive-doc.pkg/files new file mode 100644 index 0000000..0ddb634 --- /dev/null +++ b/libarchive-doc.pkg/files @@ -0,0 +1 @@ +/usr/share/man diff --git a/libarchive.13.pkg/control b/libarchive.13.pkg/control new file mode 100644 index 0000000..2b0059f --- /dev/null +++ b/libarchive.13.pkg/control @@ -0,0 +1,8 @@ +Architecture: any +Platform: all +Depends: + libbz2.1.0, + liblzma.5, + libz.1, +Description: Multi-format archive and compression library + ${Common-Description} diff --git a/libarchive.13.pkg/docs b/libarchive.13.pkg/docs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/libarchive.13.pkg/docs diff --git a/libarchive.13.pkg/files b/libarchive.13.pkg/files new file mode 100644 index 0000000..02b1899 --- /dev/null +++ b/libarchive.13.pkg/files @@ -0,0 +1 @@ +/usr/lib/*/libarchive.so.* diff --git a/substvars b/substvars new file mode 100644 index 0000000..302ded4 --- /dev/null +++ b/substvars @@ -0,0 +1,8 @@ +Common-Description: + The libarchive library provides a flexible interface for reading and writing + archives in various formats such as tar and cpio. libarchive also supports + reading and writing archives compressed using various compression filters such + as gzip and bzip2. The library is inherently stream-oriented; readers serially + iterate through the archive, writers serially add things to the archive. In + particular, note that there is currently no built-in support for random access + nor for in-place modification. |