source: scripts/untested/blfs-scripts/blfs-pkgconfig.sh @ d5e4fdc0

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since d5e4fdc0 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: 774 bytes
Line 
1#!/bin/bash
2#
3# pkgconfig
4#
5# Dependencies: none
6#
7
8cd ${SRC}
9LOG=blfs-pkgconfig.log
10
11set_libdirname
12setup_multiarch
13
14# override TARBALLS to point at gnome/platform tree
15GNOME_REL_MAJ=`echo ${GNOME_REL} | sed 's@\([0-9]*\.[0-9]*\).*@\1@g'`
16export TARBALLS=${GNOME_TARBALLS}/platform/${GNOME_REL_MAJ}/${GNOME_REL}/sources
17unpack_tarball pkgconfig-${PKGCONFIG_VER} &&
18cd ${PKGDIR}
19
20max_log_init pkgconfig ${PKGCONFIG_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
21CC="${CC-gcc} ${ARCH_CFLAGS}" \
22CFLAGS="${TARGET_CFLAGS}" \
23 ./configure --prefix=/usr \
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.