#!/bin/bash

export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/lib/pkgconfig
export CFLAGS="-march=i486 -mtune=i686 -Os -pipe"
export CXXFLAGS="-march=i486 -mtune=i686 -Os -pipe"

[ -d libarchive-2.6.0 ] && rm -r libarchive-2.6.0
tar xzvf libarchive-2.6.0.tar.gz
cd libarchive-2.6.0
./configure --prefix=/usr/local 
make 
make install DESTDIR=/mnt/hda2/libarchive/pkg 