diff options
author | Mark Rosenstand <mark@borkware.net> | 2006-10-23 21:33:49 +0200 |
---|---|---|
committer | Mark Rosenstand <mark@borkware.net> | 2006-10-23 21:33:49 +0200 |
commit | e4d2dbda6ba0d3a9c0bb0d58255b65db80932737 (patch) | |
tree | df71191e3b70ed0e261737e00d8b51cce2aba4c0 | |
parent | 979a5d6ec0d145ef4f4bfb0d5e8cc9c8c94a5397 (diff) | |
download | contrib-e4d2dbda6ba0d3a9c0bb0d58255b65db80932737.tar.gz contrib-e4d2dbda6ba0d3a9c0bb0d58255b65db80932737.tar.xz |
libarchive: initial import
-rw-r--r-- | libarchive/.footprint | 24 | ||||
-rw-r--r-- | libarchive/.md5sum | 1 | ||||
-rw-r--r-- | libarchive/Pkgfile | 16 |
3 files changed, 41 insertions, 0 deletions
diff --git a/libarchive/.footprint b/libarchive/.footprint new file mode 100644 index 000000000..b45524dc8 --- /dev/null +++ b/libarchive/.footprint @@ -0,0 +1,24 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/bsdtar +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/archive.h +-rw-r--r-- root/root usr/include/archive_entry.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libarchive.a +-rwxr-xr-x root/root usr/lib/libarchive.la +lrwxrwxrwx root/root usr/lib/libarchive.so -> libarchive.so.1.3.1 +lrwxrwxrwx root/root usr/lib/libarchive.so.1 -> libarchive.so.1.3.1 +-rwxr-xr-x root/root usr/lib/libarchive.so.1.3.1 +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/bsdtar.1.gz +drwxr-xr-x root/root usr/man/man3/ +-rw-r--r-- root/root usr/man/man3/archive_entry.3.gz +-rw-r--r-- root/root usr/man/man3/archive_read.3.gz +-rw-r--r-- root/root usr/man/man3/archive_util.3.gz +-rw-r--r-- root/root usr/man/man3/archive_write.3.gz +-rw-r--r-- root/root usr/man/man3/libarchive.3.gz +drwxr-xr-x root/root usr/man/man5/ +-rw-r--r-- root/root usr/man/man5/libarchive-formats.5.gz +-rw-r--r-- root/root usr/man/man5/tar.5.gz diff --git a/libarchive/.md5sum b/libarchive/.md5sum new file mode 100644 index 000000000..5e1903155 --- /dev/null +++ b/libarchive/.md5sum @@ -0,0 +1 @@ +c618d26d680ace57fcd5f59cea3151c6 libarchive-1.3.1.tar.gz diff --git a/libarchive/Pkgfile b/libarchive/Pkgfile new file mode 100644 index 000000000..36ccde7c4 --- /dev/null +++ b/libarchive/Pkgfile @@ -0,0 +1,16 @@ +# Description: Library to create and read several archive formats +# URL: http://people.freebsd.org/~kientzle/libarchive/ +# Maintainer: Mark Rosenstand, mark at borkware dot net +# Depends on: bzip2, zlib + +name=libarchive +version=1.3.1 +release=1 +source=(http://people.freebsd.org/~kientzle/libarchive/src/libarchive-$version.tar.gz) + +build() { + cd libarchive-$version + ./configure --prefix=/usr + make + make DESTDIR=$PKG install +} |