clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
|
Last change
on this file since 83ea618 was 1c379e4, checked in by Jim Gifford <clfs@…>, 20 years ago |
r589@server (orig r587): ryan | 2005-08-05 22:57:16 -0700
Add a pile of new scripts, and add -32 and -64 symlinks
|
-
Property mode
set to
100755
|
|
File size:
728 bytes
|
| Line | |
|---|
| 1 | #!/bin/bash
|
|---|
| 2 |
|
|---|
| 3 | ### docbook-utils ###
|
|---|
| 4 |
|
|---|
| 5 | cd ${SRC}
|
|---|
| 6 | LOG=docbook-utils-blfs.log
|
|---|
| 7 |
|
|---|
| 8 | set_libdirname
|
|---|
| 9 | setup_multiarch
|
|---|
| 10 |
|
|---|
| 11 | unpack_tarball docbook-utils-${DBK_UTILS_VER}
|
|---|
| 12 | cd ${PKGDIR}
|
|---|
| 13 |
|
|---|
| 14 | max_log_init docbook-utils ${DBK_UTILS_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
|
|---|
| 15 | CC="${CC-gcc} ${ARCH_CFLAGS}" \
|
|---|
| 16 | CFLAGS="${TGT_CFLAGS}" \
|
|---|
| 17 | ./configure --prefix=/usr \
|
|---|
| 18 | --mandir=/usr/share/man --infodir=/usr/share/info \
|
|---|
| 19 | >> ${LOGFILE} 2>&1 &&
|
|---|
| 20 | echo " o Configure OK" &&
|
|---|
| 21 |
|
|---|
| 22 | min_log_init ${BUILDLOGS} &&
|
|---|
| 23 | make \
|
|---|
| 24 | >> ${LOGFILE} 2>&1 &&
|
|---|
| 25 | echo " o Build OK" &&
|
|---|
| 26 |
|
|---|
| 27 | min_log_init ${INSTLOGS} &&
|
|---|
| 28 | make install \
|
|---|
| 29 | >> ${LOGFILE} 2>&1 &&
|
|---|
| 30 | echo " o ALL OK" || barf
|
|---|
| 31 |
|
|---|
| 32 | for doctype in html ps dvi man pdf rtf tex texi txt; do
|
|---|
| 33 | ln -s docbook2${doctype} /usr/bin/db2${doctype}
|
|---|
| 34 | done
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.