source: scripts/untested/gnome-scripts/gnome-platform-scripts/gnome-platform-audiofile.sh @ b67b7ca

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

r586@server (orig r584): ryan | 2005-08-05 21:49:39 -0700
Update scripts, built fine on amd64 biarch


  • Property mode set to 100755
File size: 1.1 KB
Line 
1#!/bin/bash
2
3### audiofile ###
4
5cd ${SRC}
6LOG=audiofile-gnome-platform.log
7
8SELF=`basename ${0}`
9set_buildenv
10set_libdirname
11setup_multiarch
12if [ ! "${libdirname}" = "lib" ]; then
13   extra_conf="--libdir=/usr/${libdirname}"
14fi
15
16# override TARBALLS to point at gnome/platform tree
17GNOME_REL_MAJ=`echo ${GNOME_REL} | sed 's@\([0-9]*\.[0-9]*\).*@\1@g'`
18export TARBALLS=${GNOME_TARBALLS}/platform/${GNOME_REL_MAJ}/${GNOME_REL}/sources
19
20unpack_tarball audiofile-${AUDIOFILE_VER}
21cd ${PKGDIR}
22
23max_log_init audiofile ${AUDIOFILE_VER} "gnome-platform (shared)" ${CONFLOGS} ${LOG}
24CC="${CC-gcc} ${ARCH_CFLAGS}" \
25CXX="${CXX-g++} ${ARCH_CFLAGS}" \
26CFLAGS="${TGT_CFLAGS}" \
27CXXFLAGS="${TGT_CFLAGS}" \
28./configure --prefix=/usr ${extra_conf} \
29   >> ${LOGFILE} 2>&1 &&
30echo " o Configure OK" &&
31
32min_log_init ${BUILDLOGS} &&
33make \
34   >> ${LOGFILE} 2>&1 &&
35echo " o Build OK" &&
36
37min_log_init ${TESTLOGS} &&
38make check \
39   >> ${LOGFILE} 2>&1 &&
40echo " o Test OK" || barf
41
42min_log_init ${INSTLOGS} &&
43make install \
44   >> ${LOGFILE} 2>&1 &&
45echo " o ALL OK" || barf
46
47if [ "Y" = "${MULTIARCH}" ]; then
48   use_wrapper /usr/bin/audiofile-config
49fi
Note: See TracBrowser for help on using the repository browser.