source: scripts/untested/blfs-scripts/blfs-xml-parser-pm.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: 711 bytes
Line 
1#!/bin/bash
2
3### XML-Parser perl module ###
4
5cd ${SRC}
6LOG=xml-parser-pm-blfs.log
7
8SELF=`basename ${0}`
9set_buildenv
10
11# No need to set libdirname etc, will use perl defaults which should
12# correctly set CC and libdir
13
14unpack_tarball XML-Parser-${XML_PARSER_PM_VER}
15cd ${PKGDIR}
16
17max_log_init XML-Parser ${XML_PARSER_PM_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
18perl Makefile.PL \
19   >> ${LOGFILE} 2>&1 &&
20echo " o Configure OK" || barf
21
22min_log_init ${BUILDLOGS} &&
23make \
24   >> ${LOGFILE} 2>&1 &&
25echo " o Build OK" || barf
26
27min_log_init ${TESTLOGS} &&
28make test \
29   >> ${LOGFILE} 2>&1 &&
30echo " o Test OK" || barf
31
32min_log_init ${INSTLOGS} &&
33make install \
34   >> ${LOGFILE} 2>&1 &&
35echo " o ALL OK" || barf
36
Note: See TracBrowser for help on using the repository browser.