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 7ed0e05, checked in by Jim Gifford <clfs@…>, 19 years ago |
r619@server (orig r617): ryan | 2005-08-07 00:07:42 -0700
Add new packages for blfs builds
|
-
Property mode
set to
100755
|
File size:
1.5 KB
|
Line | |
---|
1 | #!/bin/bash
|
---|
2 |
|
---|
3 | ### polypaudio ###
|
---|
4 |
|
---|
5 | cd ${SRC}
|
---|
6 | LOG=polypaudio-blfs.log
|
---|
7 |
|
---|
8 | SELF=`basename ${0}`
|
---|
9 | set_buildenv
|
---|
10 | set_libdirname
|
---|
11 | setup_multiarch
|
---|
12 | if [ ! "${libdirname}" = "lib" ]; then
|
---|
13 | extra_conf="--libdir=/usr/${libdirname}"
|
---|
14 | fi
|
---|
15 |
|
---|
16 | unpack_tarball polypaudio-${POLYPAUDIO_VER}
|
---|
17 | cd ${PKGDIR}
|
---|
18 |
|
---|
19 | # Fix the generated polypaudio pkgconfig files to look at the right libdir
|
---|
20 | files=`ls *.pc.in`
|
---|
21 | for file in ${files}; do
|
---|
22 | sed -i -e "/^libdir=/s@\(.*\)lib.*@\1${libdirname}@g" $file
|
---|
23 | done
|
---|
24 |
|
---|
25 | # Fix the symlinking of pacat to parec during install when pacat already exists
|
---|
26 | sed -i -e 's@ln -s pacat@ln -sf pacat@g' polyp/Makefile.in
|
---|
27 |
|
---|
28 | # Use LDFLAGS to appease libtool
|
---|
29 | max_log_init polypaudio ${POLYPAUDIO_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
|
---|
30 | CC="${CC-gcc} ${ARCH_CFLAGS}" \
|
---|
31 | CXX="${CXX-g++} ${ARCH_CFLAGS}" \
|
---|
32 | CFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
|
---|
33 | CXXFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
|
---|
34 | ./configure --prefix=/usr \
|
---|
35 | --sysconfdir=/etc ${extra_conf} \
|
---|
36 | --mandir=/usr/share/man \
|
---|
37 | >> ${LOGFILE} 2>&1 &&
|
---|
38 | echo " o Configure OK" &&
|
---|
39 |
|
---|
40 | min_log_init ${BUILDLOGS} &&
|
---|
41 | make \
|
---|
42 | >> ${LOGFILE} 2>&1 &&
|
---|
43 | echo " o Build OK" &&
|
---|
44 |
|
---|
45 | min_log_init ${INSTLOGS} &&
|
---|
46 | make install \
|
---|
47 | >> ${LOGFILE} 2>&1 &&
|
---|
48 | echo " o ALL OK" || barf
|
---|
49 |
|
---|
50 | # polypaudio generates a conf file which points to its modules under
|
---|
51 | # /usr/${libdirname} . Here we will keep 2 copies and generate a symlink
|
---|
52 | if [ "${MULTIARCH}" = "Y" ]; then
|
---|
53 | mv /etc/polypaudio/daemon.conf /etc/polypaudio/daemon.conf-${BUILDENV}
|
---|
54 | ln -sf daemon.conf-${BUILDENV} /etc/polypaudio/daemon.conf
|
---|
55 | fi
|
---|
Note:
See
TracBrowser
for help on using the repository browser.