source: scripts/untested/blfs-scripts/blfs-ed.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: 703 bytes
Line 
1#!/bin/bash
2#
3# ed
4#
5# Dependencies: None
6#
7
8cd ${SRC}
9LOG=blfs-ed.log
10
11set_libdirname
12setup_multiarch
13
14unpack_tarball ed-${ED_VER} &&
15cd ${PKGDIR}
16
17# Would normally put a case stmt around this, but hey, ed doesn't get
18# updated too often ;-)
19apply_patch ed-0.2-mkstemp-1
20
21max_log_init ed ${ED_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
22CC="${CC-gcc} ${ARCH_CFLAGS}" \
23CFLAGS="${TGT_CFLAGS}" \
24 ./configure --prefix=/usr --build="${TARGET}" \
25   --exec-prefix="" \
26   >> ${LOGFILE} 2>&1 &&
27echo " o Configure OK" &&
28
29min_log_init ${BUILDLOGS} &&
30make ${PMFLAGS} \
31   >> ${LOGFILE} 2>&1 &&
32echo " o Build OK" &&
33
34min_log_init ${INSTLOGS} &&
35make install \
36   >> ${LOGFILE} 2>&1 &&
37echo " o ALL OK" || barf
38
Note: See TracBrowser for help on using the repository browser.