source: scripts_home/scripts/blfs-scripts/blfs-expat.sh@ 1c9c5c3

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since 1c9c5c3 was 1c9c5c3, checked in by Jim Gifford <clfs@…>, 19 years ago

r624@server (orig r622): jim | 2005-10-31 12:40:28 -0800
Rearranging Archive

  • 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.