3 archive_name
=$src_name-$version.
tar.bz2
4 url0
=ftp://ftp.alsa-project.org
/pub
/lib
/$archive_name
6 src_dir
=$src_dir_root/$src_name-$version
8 rm -Rf $src_name-$version
11 build_dir
=$builds_dir_root/$pkg_name-$version-$target_gnu_triple
17 export PATH
=$cross_toolchain_dir_root/bin
:$PATH
19 # at link time, the only way to tell gnu ld where to look for shared lib dependencies is to pass the -rpath-link option
20 export "CC=$target_gnu_triple-gcc -B$target_sysroot/nyan/glibc/current/lib -L$target_sysroot/nyan/glibc/current/lib -Wl,-rpath-link,$target_sysroot/nyan/glibc/current/lib -static-libgcc"
21 export 'CFLAGS=-O2 -pipe -fPIC'
23 --build=$build_gnu_triple \
24 --host=$target_gnu_triple \
25 --prefix=/nyan
/alsa-lib
/0 \
28 --disable-old-symbols \
37 make install DESTDIR
=$target_sysroot
39 # it wants an "audio" entry in /etc/group with a GID of 116
40 if ! egrep -q '^audio:' $target_sysroot/etc
/group
; then
41 echo 'audio::116:' >>$target_sysroot/etc
/group
45 find $target_sysroot/nyan
/$src_name/0 -type f
-name '*.la' |
xargs rm -f
46 find $target_sysroot/nyan
/$src_name/0 -type f |
while read f
; do if file $f |
egrep 'ELF.+(shared|executable)' >/dev
/null
; then $target_gnu_triple-strip -s $f; fi; done
48 rm -Rf $build_dir $src_dir