clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
Last change
on this file since 1a625f6 was 617118d, checked in by Jim Gifford <clfs@…>, 19 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 |
|
---|
7 | cd ${SRC}
|
---|
8 | LOG=alsa-tools-blfs.log
|
---|
9 |
|
---|
10 | set_libdirname
|
---|
11 | setup_multiarch
|
---|
12 |
|
---|
13 | unpack_tarball alsa-tools-${ALSA_TOOLS_VER}
|
---|
14 | cd ${PKGDIR}
|
---|
15 |
|
---|
16 | apply_patch alsa-tools-1.0.8-update_ac3dec_config_foo-1
|
---|
17 |
|
---|
18 | cd ${PKGDIR}/ac3dec
|
---|
19 |
|
---|
20 | max_log_init alsa-tools ${ALSA_TOOLS_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
|
---|
21 | CC="${CC-gcc} ${ARCH_CFLAGS}" \
|
---|
22 | CFLAGS="${TGT_CFLAGS}" \
|
---|
23 | ./configure --prefix=/usr --mandir=/usr/share/man \
|
---|
24 | >> ${LOGFILE} 2>&1 &&
|
---|
25 | echo " o Configure OK" &&
|
---|
26 |
|
---|
27 | min_log_init ${BUILDLOGS} &&
|
---|
28 | make ${PMFLAGS} \
|
---|
29 | >> ${LOGFILE} 2>&1 &&
|
---|
30 | echo " o Build OK" &&
|
---|
31 |
|
---|
32 | min_log_init ${INSTLOGS} &&
|
---|
33 | make install \
|
---|
34 | >> ${LOGFILE} 2>&1 &&
|
---|
35 | echo " o ALL OK" || barf
|
---|
36 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.