clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
Last change
on this file since 66f17d5 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:
852 bytes
|
Rev | Line | |
---|
[617118d] | 1 | #!/bin/bash
|
---|
| 2 | #
|
---|
| 3 | # gdbm
|
---|
| 4 | #
|
---|
| 5 | # Dependencies: None
|
---|
| 6 | #
|
---|
| 7 |
|
---|
| 8 | cd ${SRC}
|
---|
| 9 | LOG=blfs-gdbm.log
|
---|
| 10 |
|
---|
| 11 | SELF=`basename ${0}`
|
---|
| 12 | set_buildenv
|
---|
| 13 | set_libdirname
|
---|
| 14 | setup_multiarch
|
---|
| 15 | if [ ! "${libdirname}" = "lib" ]; then
|
---|
| 16 | extra_conf="--libdir=/usr/${libdirname}"
|
---|
| 17 | fi
|
---|
| 18 |
|
---|
| 19 | unpack_tarball gdbm-${GDBM_VER} &&
|
---|
| 20 | cd ${PKGDIR}
|
---|
| 21 |
|
---|
| 22 | max_log_init gdbm ${GDBM_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
|
---|
| 23 | CC="${CC-gcc} ${ARCH_CFLAGS}" \
|
---|
| 24 | CFLAGS="${TGT_CFLAGS}" \
|
---|
| 25 | ./configure --prefix=/usr --build="${TARGET}" \
|
---|
| 26 | --mandir=/usr/share/man --infodir=/usr/share/info ${extra_conf} \
|
---|
| 27 | >> ${LOGFILE} 2>&1 &&
|
---|
| 28 | echo " o Configure OK" &&
|
---|
| 29 |
|
---|
| 30 | min_log_init ${BUILDLOGS} &&
|
---|
| 31 | make ${PMFLAGS} \
|
---|
| 32 | >> ${LOGFILE} 2>&1 &&
|
---|
| 33 | echo " o Build OK" &&
|
---|
| 34 |
|
---|
| 35 | min_log_init ${INSTLOGS} &&
|
---|
| 36 | make BINOWN=root BINGRP=root install \
|
---|
| 37 | >> ${LOGFILE} 2>&1 &&
|
---|
| 38 | make BINOWN=root BINGRP=root install-compat \
|
---|
| 39 | >> ${LOGFILE} 2>&1 &&
|
---|
| 40 | echo " o ALL OK" || barf
|
---|
| 41 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.