source: scripts/untested/blfs-scripts/blfs-alsa-tools.sh @ e5345f18

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

r603@server (orig r601): ryan | 2005-08-05 23:25:53 -0700
Fix bug entering ac3dec directory


  • Property mode set to 100755
File size: 724 bytes
Line 
1#!/bin/bash
2
3### alsa-tools ###
4
5# The only tool of any use to me from here is ac3dec
6
7cd ${SRC}
8LOG=alsa-tools-blfs.log
9
10set_libdirname
11setup_multiarch
12
13unpack_tarball alsa-tools-${ALSA_TOOLS_VER}
14cd ${PKGDIR}
15
16apply_patch alsa-tools-1.0.8-update_ac3dec_config_foo-1
17
18cd ${SRC}/${PKGDIR}/ac3dec
19
20max_log_init alsa-tools ${ALSA_TOOLS_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
21CC="${CC-gcc} ${ARCH_CFLAGS}" \
22CFLAGS="${TGT_CFLAGS}" \
23./configure --prefix=/usr --mandir=/usr/share/man \
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.