source: scripts/scripts/untested/blfs-scripts/blfs-libXvMCW.sh @ 7f65c0e

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 7f65c0e was 7f65c0e, checked in by Jim Gifford <clfs@…>, 18 years ago

r625@server (orig r623): jim | 2005-10-31 12:43:24 -0800
Final Move

  • Property mode set to 100755
File size: 979 bytes
Line 
1#!/bin/bash
2
3### libXvMCW ###
4
5cd ${SRC}
6LOG=libXvMCW-blfs.log
7
8SELF=`basename ${0}`
9set_buildenv
10set_libdirname
11setup_multiarch
12
13unpack_tarball libXvMCW-${LIBXVMCW_VER}
14cd ${PKGDIR}
15
16# update libtool so it will take extra options to CC ( ie CC="gcc -m32" )
17libtoolize --force
18
19max_log_init libXvMCW ${LIBXVMCW_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
20CC="${CC-gcc} ${ARCH_CFLAGS}" \
21CFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
22./configure \
23   >> ${LOGFILE} 2>&1 &&
24echo " o Configure OK" &&
25
26min_log_init ${BUILDLOGS} &&
27make \
28   >> ${LOGFILE} 2>&1 &&
29echo " o Build OK" &&
30
31min_log_init ${INSTLOGS} &&
32make install \
33   >> ${LOGFILE} 2>&1 &&
34echo " o ALL OK" || barf
35
36cat <<EOF
37-------------------------------------------------------
38  libXvMCW installs a sample configuration file under
39  /etc/X11 ( /etc/X11/XvMCConfig ). Edit this file to
40  suit your environment ( by default it references
41  libXvMCNVIDIA_dynamic.so.1 )
42-------------------------------------------------------
43EOF
Note: See TracBrowser for help on using the repository browser.