source: scripts/untested/blfs-scripts/blfs-popt.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: 756 bytes
Line 
1#!/bin/sh
2#
3# popt
4#
5# Dependencies: None
6#
7
8cd ${SRC}
9LOG=blfs-popt.log
10
11SELF=`basename ${0}`
12set_buildenv
13set_libdirname
14setup_multiarch
15if [ ! "${libdirname}" = "lib" ]; then
16   extra_conf="--libdir=/usr/${libdirname}"
17fi
18
19unpack_tarball popt-${POPT_VER} &&
20cd ${PKGDIR}
21
22max_log_init popt ${POPT_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
23CC="${CC-gcc} ${ARCH_CFLAGS}" \
24CFLAGS="${TGT_CFLAGS}" \
25 ./configure --prefix=/usr --build="${TARGET}" \
26   --mandir=/usr/share/man --infodir=/usr/share/info ${extra_conf} \
27   >> ${LOGFILE} 2>&1 &&
28echo " o Configure OK" &&
29
30min_log_init ${BUILDLOGS} &&
31make ${PMFLAGS} \
32   >> ${LOGFILE} 2>&1 &&
33echo " o Build OK" &&
34
35min_log_init ${INSTLOGS} &&
36make install \
37   >> ${LOGFILE} 2>&1 &&
38echo " o ALL OK" || barf
39
Note: See TracBrowser for help on using the repository browser.