source: scripts/untested/blfs-scripts/blfs-lame.sh@ 10e90e4

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since 10e90e4 was 1c379e4, checked in by Jim Gifford <clfs@…>, 19 years ago

r589@server (orig r587): ryan | 2005-08-05 22:57:16 -0700
Add a pile of new scripts, and add -32 and -64 symlinks



  • Property mode set to 100755
File size: 872 bytes
Line 
1#!/bin/bash
2
3### lame ###
4
5cd ${SRC}
6LOG=lame-blfs.log
7
8SELF=`basename ${0}`
9set_buildenv
10set_libdirname
11setup_multiarch
12if [ ! "${libdirname}" = "lib" ]; then
13 extra_conf="--libdir=/usr/${libdirname}"
14fi
15
16unpack_tarball lame-${LAME_VER}
17cd ${PKGDIR}
18
19# Fix lame to support libsndfile versions after 0.77
20apply_patch lame-3.96-libsndfile_fixes
21
22max_log_init lame ${LAME_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
23CC="${CC-gcc} ${ARCH_CFLAGS}" \
24CXX="${CXX-g++} ${ARCH_CFLAGS}" \
25CFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
26CXXFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
27./configure --prefix=/usr ${extra_conf} \
28 --mandir=/usr/share/man \
29 --enable-mp3rtp \
30 >> ${LOGFILE} 2>&1 &&
31echo " o Configure OK" &&
32
33min_log_init ${BUILDLOGS} &&
34make \
35 >> ${LOGFILE} 2>&1 &&
36echo " o Build OK" &&
37
38min_log_init ${INSTLOGS} &&
39make install \
40 >> ${LOGFILE} 2>&1 &&
41echo " o ALL OK" || barf
42
Note: See TracBrowser for help on using the repository browser.