source: scripts/blfs-scripts/blfs-expat.sh @ 617118d

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 617118d was 617118d, checked in by Jim Gifford <clfs@…>, 18 years ago

r561@server (orig r559): root | 2005-06-05 02:38:49 -0700
Fixed Directory Structure

  • Property mode set to 100755
File size: 684 bytes
Line 
1#!/bin/sh
2#
3# Expat
4# (script needs to be checked)
5#
6cd ${SRC}
7LOG=expat-blfs.log
8SELF=`basename ${0}`
9set_buildenv
10set_libdirname
11setup_multiarch
12if [ ! "${libdirname}" = "lib" ]; then
13   extra_conf="--libdir=/usr/${libdirname}"
14fi
15
16unpack_tarball expat-${EXPAT_VER} &&
17
18cd ${PKGDIR}
19
20max_log_init Expat ${EXPAT_VER} "native (shared)" ${CONFLOGS} ${LOG}
21CC="${CC-gcc} ${ARCH_CFLAGS}" \
22CFLAGS="${TGT_CFLAGS}" \
23./configure --prefix=/usr ${extra_conf} \
24   >> ${LOGFILE} 2>&1 &&
25echo " o Configure OK" &&
26
27min_log_init ${BUILDLOGS} &&
28make \
29   >> ${LOGFILE} 2>&1 &&
30echo " o Build OK" &&
31
32min_log_init ${INSTLOGS} &&
33make install \
34   >> ${LOGFILE} 2>&1 &&
35echo " o ALL OK" || barf
36
Note: See TracBrowser for help on using the repository browser.