clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
Last change
on this file since 23b6afb was 23b6afb, checked in by Jim Gifford <clfs@…>, 19 years ago |
r564@server (orig r562): jim | 2005-06-07 20:12:28 -0700
Mirrored from jg555.com on Tue Jun 7 20:12:17 PDT 2005
----------------------------------------------------------------------
|
-
Property mode
set to
100644
|
File size:
1.4 KB
|
Line | |
---|
1 | #!/bin/bash
|
---|
2 |
|
---|
3 | ### XML-Parser perl module ###
|
---|
4 |
|
---|
5 | cd ${SRC}
|
---|
6 | LOG=xml-parser-pm-blfs.log
|
---|
7 |
|
---|
8 | SELF=`basename ${0}`
|
---|
9 | set_buildenv
|
---|
10 |
|
---|
11 | # No need to set libdirname etc, will use perl defaults which should
|
---|
12 | # correctly set CC and libdir
|
---|
13 |
|
---|
14 | unpack_tarball XML-Parser-${XML_PARSER_PM_VER}
|
---|
15 | cd ${PKGDIR}
|
---|
16 |
|
---|
17 | max_log_init XML-Parser ${XML_PARSER_PM_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
|
---|
18 | perl Makefile.PL \
|
---|
19 | >> ${LOGFILE} 2>&1 &&
|
---|
20 | echo " o Configure OK" || barf
|
---|
21 |
|
---|
22 | min_log_init ${BUILDLOGS} &&
|
---|
23 | make \
|
---|
24 | >> ${LOGFILE} 2>&1 &&
|
---|
25 | echo " o Build OK" || barf
|
---|
26 |
|
---|
27 | min_log_init ${TESTLOGS} &&
|
---|
28 | make test \
|
---|
29 | >> ${LOGFILE} 2>&1 &&
|
---|
30 | echo " o Test OK" || barf
|
---|
31 |
|
---|
32 | min_log_init ${INSTLOGS} &&
|
---|
33 | make install \
|
---|
34 | >> ${LOGFILE} 2>&1 &&
|
---|
35 | echo " o ALL OK" || barf
|
---|
36 |
|
---|
37 | #!/bin/bash
|
---|
38 |
|
---|
39 | ### XML-Parser perl module ###
|
---|
40 |
|
---|
41 | cd ${SRC}
|
---|
42 | LOG=xml-parser-pm-blfs.log
|
---|
43 |
|
---|
44 | SELF=`basename ${0}`
|
---|
45 | set_buildenv
|
---|
46 |
|
---|
47 | # No need to set libdirname etc, will use perl defaults which should
|
---|
48 | # correctly set CC and libdir
|
---|
49 |
|
---|
50 | unpack_tarball XML-Parser-${XML_PARSER_PM_VER}
|
---|
51 | cd ${PKGDIR}
|
---|
52 |
|
---|
53 | max_log_init XML-Parser ${XML_PARSER_PM_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
|
---|
54 | perl Makefile.PL \
|
---|
55 | >> ${LOGFILE} 2>&1 &&
|
---|
56 | echo " o Configure OK" || barf
|
---|
57 |
|
---|
58 | min_log_init ${BUILDLOGS} &&
|
---|
59 | make \
|
---|
60 | >> ${LOGFILE} 2>&1 &&
|
---|
61 | echo " o Build OK" || barf
|
---|
62 |
|
---|
63 | min_log_init ${TESTLOGS} &&
|
---|
64 | make test \
|
---|
65 | >> ${LOGFILE} 2>&1 &&
|
---|
66 | echo " o Test OK" || barf
|
---|
67 |
|
---|
68 | min_log_init ${INSTLOGS} &&
|
---|
69 | make install \
|
---|
70 | >> ${LOGFILE} 2>&1 &&
|
---|
71 | echo " o ALL OK" || barf
|
---|
72 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.