source: scripts/untested/blfs-scripts/blfs-swig.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: 779 bytes
Line 
1#!/bin/bash
2
3### swig ###
4
5cd ${SRC}
6LOG=swig-blfs.log
7
8set_libdirname
9setup_multiarch
10
11unpack_tarball swig-${SWIG_VER}
12cd ${PKGDIR}
13
14# TODO: ensure swig looks in lib64 for python libs...
15# NOTE: only diff between 32 and 64 builds is the swig binary itself
16#       we may need to install both -32 and -64, but I'm not too sure
17
18max_log_init swig ${SWIG_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
19CC="${CC-gcc} ${ARCH_CFLAGS}" \
20CXX="${CXX-g++} ${ARCH_CFLAGS}" \
21CFLAGS="${TGT_CFLAGS}" \
22CXXFLAGS="${TGT_CFLAGS}" \
23./configure --prefix=usr \
24   >> ${LOGFILE} 2>&1 &&
25echo " o Configure OK" &&
26
27min_log_init ${BUILDLOGS} &&
28make ${PMFLAGS} \
29   >> ${LOGFILE} 2>&1 &&
30echo " o Build OK" &&
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.