source: scripts/untested/blfs-scripts/blfs-alsa-tools.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: 717 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 ${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.