wok rev 3692

Update: unzip (handle BusyBox symlinks)
author Matthew Sheets <rcx@zoominternet.net>
date Thu Jul 16 09:04:19 2009 +0000 (2009-07-16)
parents 53d61e9e834b
children 5b0b131c3480
files unzip/receipt
line diff
     1.1 --- a/unzip/receipt	Wed Jul 15 14:51:40 2009 +0000
     1.2 +++ b/unzip/receipt	Thu Jul 16 09:04:19 2009 +0000
     1.3 @@ -24,3 +24,13 @@
     1.4  	cp -a $_pkg/bin/unzip $fs/usr/bin
     1.5  }
     1.6  
     1.7 +# Remove Busybox symlink before installing
     1.8 +pre_install()
     1.9 +{
    1.10 +	rm -f $1/bin/unzip
    1.11 +}
    1.12 +
    1.13 +post_remove()
    1.14 +{
    1.15 +	ln -s /bin/busybox /bin/unzip
    1.16 +}