clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
Last change
on this file since 300656b was 617118d, checked in by Jim Gifford <clfs@…>, 19 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
|
Rev | Line | |
---|
[617118d] | 1 | #!/bin/bash
|
---|
| 2 | #
|
---|
| 3 | # pkgconfig
|
---|
| 4 | #
|
---|
| 5 | # Dependencies: none
|
---|
| 6 | #
|
---|
| 7 |
|
---|
| 8 | cd ${SRC}
|
---|
| 9 | LOG=blfs-pkgconfig.log
|
---|
| 10 |
|
---|
| 11 | set_libdirname
|
---|
| 12 | setup_multiarch
|
---|
| 13 |
|
---|
| 14 | # override TARBALLS to point at gnome/platform tree
|
---|
| 15 | GNOME_REL_MAJ=`echo ${GNOME_REL} | sed 's@\([0-9]*\.[0-9]*\).*@\1@g'`
|
---|
| 16 | export TARBALLS=${GNOME_TARBALLS}/platform/${GNOME_REL_MAJ}/${GNOME_REL}/sources
|
---|
| 17 | unpack_tarball pkgconfig-${PKGCONFIG_VER} &&
|
---|
| 18 | cd ${PKGDIR}
|
---|
| 19 |
|
---|
| 20 | max_log_init pkgconfig ${PKGCONFIG_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
|
---|
| 21 | CC="${CC-gcc} ${ARCH_CFLAGS}" \
|
---|
| 22 | CFLAGS="${TARGET_CFLAGS}" \
|
---|
| 23 | ./configure --prefix=/usr \
|
---|
| 24 | >> ${LOGFILE} 2>&1 &&
|
---|
| 25 | echo " o Configure OK" &&
|
---|
| 26 |
|
---|
| 27 | min_log_init ${BUILDLOGS} &&
|
---|
| 28 | make \
|
---|
| 29 | >> ${LOGFILE} 2>&1 &&
|
---|
| 30 | echo " o Build OK" &&
|
---|
| 31 |
|
---|
| 32 | min_log_init ${INSTLOGS} &&
|
---|
| 33 | make install \
|
---|
| 34 | >> ${LOGFILE} 2>&1 &&
|
---|
| 35 | echo " o ALL OK" || barf
|
---|
| 36 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.