source: scripts/untested/blfs-scripts/blfs-nas.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: 554 bytes
Line 
1#!/bin/bash
2#
3# nas
4#
5# Dependencies: X
6#
7
8cd ${SRC}
9LOG=blfs-nas.log
10
11SELF=`basename ${0}`
12set_buildenv
13set_libdirname
14setup_multiarch
15
16unpack_tarball nas-${NAS_VER}.src &&
17cd ${PKGDIR}
18
19max_log_init nas ${NAS_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
20/usr/X11R6/bin/xmkmf \
21   >> ${LOGFILE} 2>&1 &&
22echo " o Configure OK" &&
23
24min_log_init ${BUILDLOGS} &&
25make World \
26   >> ${LOGFILE} 2>&1 &&
27echo " o Build OK" &&
28
29min_log_init ${INSTLOGS} &&
30make install \
31   >> ${LOGFILE} 2>&1 &&
32make install.man \
33   >> ${LOGFILE} 2>&1 &&
34echo " o ALL OK" || barf
35
Note: See TracBrowser for help on using the repository browser.