CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
libarchive: updated to 3.2.2
[crossrootfs.git] / libarchive / Pkgfile
1 # Description: Library to create and read several archive formats
2 # URL: http://people.freebsd.org/~kientzle/libarchive/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5 # Depends on: bzip2 xz zlib acl lzo
6
7 name=libarchive
8 version=3.2.2
9 release=1
10 source=(http://www.libarchive.org/downloads/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14 # We're passing --without-lzmadec, because we want to use xz for
15 # LZMA support, not the obsolete lzmadec library.
16 #
17 # We're passing --without-xml2 and --without-expat to avoid linking
18 # to libraries which are only available in opt. XML support is only
19 # needed for the xar format which we can live without.
20
21 # Fix libtool linking with host forcing our library path
22 sed -e "s|-rpath \$(libdir)|-rpath $CLFS/usr/lib|g" \
23 -e "s|\$(libarchive_la_LIBADD) \$(LIBS)|-L$CLFS/usr/lib|g" -i Makefile.in
24
25 ./configure --build=$CHOST \
26 --host=$CTARGET \
27 --prefix=/usr \
28 --without-lzmadec \
29 --without-xml2 \
30 --without-expat \
31 --without-openssl
32
33 # Forcing libtool to prioritize our sysroot
34 sed "s|lt_sysroot=|lt_sysroot=$CLFS|g" -i libtool
35
36 make
37 make DESTDIR=$PKG install
38 }