From f61e771d4a12536fc89edd09f58b411c3d3321c6 Mon Sep 17 00:00:00 2001 From: Tilman Sauerbeck Date: Sat, 21 Apr 2007 11:58:08 +0200 Subject: [PATCH] libarchive: initial release --- libarchive/.footprint | 26 ++++++++++++++++++++++++++ libarchive/.md5sum | 1 + libarchive/Pkgfile | 18 ++++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 libarchive/.footprint create mode 100644 libarchive/.md5sum create mode 100644 libarchive/Pkgfile diff --git a/libarchive/.footprint b/libarchive/.footprint new file mode 100644 index 00000000..729f9e61 --- /dev/null +++ b/libarchive/.footprint @@ -0,0 +1,26 @@ +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.2.1.6 +lrwxrwxrwx root/root usr/lib/libarchive.so.2 -> libarchive.so.2.1.6 +-rwxr-xr-x root/root usr/lib/libarchive.so.2.1.6 +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/archive_write_disk.3.gz +-rw-r--r-- root/root usr/man/man3/libarchive.3.gz +-rw-r--r-- root/root usr/man/man3/libarchive_internals.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 00000000..6923cfcc --- /dev/null +++ b/libarchive/.md5sum @@ -0,0 +1 @@ +0dc5da3f3afbdc01f9ca3e13d0c285ad libarchive-2.1.6.tar.gz diff --git a/libarchive/Pkgfile b/libarchive/Pkgfile new file mode 100644 index 00000000..ead0fe69 --- /dev/null +++ b/libarchive/Pkgfile @@ -0,0 +1,18 @@ +# Description: Library to create and read several archive formats +# URL: http://people.freebsd.org/~kientzle/libarchive/ +# Maintainer: Tilman Sauerbeck, tilman at crux dot nu +# Depends on: bzip2, zlib + +name=libarchive +version=2.1.6 +release=1 +source=(http://people.freebsd.org/~kientzle/$name/src/$name-$version.tar.gz) + +build() { + cd libarchive-$version + + ./configure --prefix=/usr --mandir=/usr/man + + make + make DESTDIR=$PKG install +}