source: scripts/target-scripts/target-gzip.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: 1.3 KB
Line 
1#!/bin/bash
2
3# cross-lfs target grep build
4# ---------------------------
5# $LastChangedBy$
6# $LastChangedDate$
7# $LastChangedRevision$
8# $HeadURL$
9#
10
11cd ${SRC}
12LOG=gzip-target.log
13
14unpack_tarball gzip-${GZIP_VER} &&
15cd ${PKGDIR}
16
17set_libdirname
18setup_multiarch
19
20if [ "${USE_SYSROOT}" = "Y" ]; then
21   BUILD_PREFIX=/usr
22   INSTALL_PREFIX="${LFS}${BUILD_PREFIX}"
23   INSTALL_OPTIONS="DESTDIR=${LFS}"
24else
25   BUILD_PREFIX="${TGT_TOOLS}"
26   INSTALL_PREFIX="${TGT_TOOLS}"
27   INSTALL_OPTIONS=""
28fi
29
30# Configure isn't setup to use ${TARGET}-nm for a test... fix it
31test -f configure-ORIG ||
32   mv configure configure-ORIG
33
34sed "s@nm conftest@${TARGET}-&@" configure-ORIG > configure
35chmod 755 configure
36
37max_log_init Gzip ${GZIP_VER} "target (shared)" ${CONFLOGS} ${LOG}
38CC="${TARGET}-gcc ${ARCH_CFLAGS}" \
39CFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
40./configure --prefix=${BUILD_PREFIX} \
41   --host=${TARGET} \
42   >> ${LOGFILE} 2>&1 &&
43echo " o Configure OK" &&
44
45min_log_init ${BUILDLOGS} &&
46make ${PMFLAGS} LDFLAGS="-s" \
47   >> ${LOGFILE} 2>&1 &&
48echo " o Build OK" &&
49
50min_log_init ${INSTLOGS} &&
51make ${INSTALL_OPTIONS} install \
52   >> ${LOGFILE} 2>&1 &&
53echo " o ALL OK" || barf
54
55rm -f ${INSTALL_PREFIX}/bin/{gunzip,zcat}
56ln -sf gzip ${INSTALL_PREFIX}/bin/gunzip
57ln -sf gzip ${INSTALL_PREFIX}/bin/zcat
58ln -sf gunzip ${INSTALL_PREFIX}/bin/uncompress
Note: See TracBrowser for help on using the repository browser.