wok-4.x diff embryo/receipt @ rev 3569

Add: bazaar
author Matthew Sheets <rcx@zoominternet.net>
date Thu Jun 25 10:57:40 2009 +0000 (2009-06-25)
parents fc471c5f5a90
children 2c110965aa8b
line diff
     1.1 --- a/embryo/receipt	Wed May 06 23:15:28 2009 +0200
     1.2 +++ b/embryo/receipt	Thu Jun 25 10:57:40 2009 +0000
     1.3 @@ -30,5 +30,13 @@
     1.4  	cp -a $_pkg/usr/share $fs/usr
     1.5  	cp -a $_pkg/usr/bin $fs/usr
     1.6  	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
     1.7 +	for i in $fs/usr/lib/*.so ; do
     1.8 +		[ -L $i ] || continue
     1.9 +		[ -e $i.0 ] && continue
    1.10 +		target=$(readlink $i)
    1.11 +		case "$target" in
    1.12 +		*.so.0.*) ln -s $target $i.0;;
    1.13 +		esac
    1.14 +	done
    1.15  }
    1.16