Magellan Linux

Contents of /branches/magellan-next/extras/libarchive/libarchive-2.8.4-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7130 - (show annotations) (download)
Wed Sep 29 11:02:42 2010 UTC (13 years, 7 months ago) by niro
File size: 957 byte(s)
auto added: ver bump to 2.8.4-r1
1 # $Id: libarchive-2.7.1-r1.smage2 6463 2010-08-25 21:32:54Z niro $
2
3 PNAME="libarchive"
4 PVER="2.8.4"
5 PBUILD="r1"
6
7 PCATEGORIE="app-arch"
8 STATE="unstable"
9
10 DESCRIPTION="A library that can create and read several streaming archive formats."
11 HOMEPAGE="http://people.freebsd.org/~kientzle/libarchive/"
12
13 DEPEND=">= app-arch/bzip2-1.0.6
14 >= sys-libs/zlib-1.2"
15
16 SDEPEND=">= sys-fs/e2fsprogs-1.41
17 >= virtual/kernel-headers"
18
19 SRCFILE="${PNAME}-${PVER}.tar.gz"
20 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
21
22 sminclude mbuild
23
24 SRC_URI=(
25 http://libarchive.googlecode.com/files/${SRCFILE}
26 mirror://${PNAME}/${SRCFILE}
27 )
28
29 UP2DATE="updatecmd http://code.google.com/p/${PNAME}/downloads/list | firsttarball gz"
30
31 src_compile()
32 {
33 cd ${SRCDIR}
34
35 mconfigure \
36 --disable-dependency-tracking \
37 --bindir=/bin \
38 --enable-bsdtar=shared \
39 --enable-bsdcpio=shared \
40 --disable-acl \
41 --disable-xattr \
42 --with-zlib \
43 --with-bz2lib\
44 --without-lzma \
45 || die
46
47 mmake || die
48 }